diff --git a/packages/svelte/elements.d.ts b/packages/svelte/elements.d.ts index f453cee08e..7e3b5a7ffa 100644 --- a/packages/svelte/elements.d.ts +++ b/packages/svelte/elements.d.ts @@ -1099,6 +1099,7 @@ export interface HTMLLinkAttributes extends HTMLAttributes { sizes?: string | undefined | null; type?: string | undefined | null; charset?: string | undefined | null; + fetchpriority?: 'auto' | 'high' | 'low' | undefined | null; } export interface HTMLMapAttributes extends HTMLAttributes { @@ -1233,6 +1234,7 @@ export interface HTMLScriptAttributes extends HTMLAttributes charset?: string | undefined | null; crossorigin?: string | undefined | null; defer?: boolean | undefined | null; + fetchpriority?: 'auto' | 'high' | 'low' | undefined | null; integrity?: string | undefined | null; nomodule?: boolean | undefined | null; nonce?: string | undefined | null;