Skip to content

Commit d23805a

Browse files
authored
feat: add fetchpriority to img attrs (#10388)
* feat: add fetchpriority to img attrs * chore: remove attr alias
1 parent d08e05b commit d23805a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

packages/svelte/elements.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -978,6 +978,7 @@ export interface HTMLImgAttributes extends HTMLAttributes<HTMLImageElement> {
978978
alt?: string | undefined | null;
979979
crossorigin?: 'anonymous' | 'use-credentials' | '' | undefined | null;
980980
decoding?: 'async' | 'auto' | 'sync' | undefined | null;
981+
fetchpriority?: 'auto' | 'high' | 'low' | undefined | null;
981982
height?: number | string | undefined | null;
982983
ismap?: boolean | undefined | null;
983984
loading?: 'eager' | 'lazy' | undefined | null;

0 commit comments

Comments
 (0)