diff --git a/packages/svelte/elements.d.ts b/packages/svelte/elements.d.ts index 60ab0823cebb..c82d5a692880 100644 --- a/packages/svelte/elements.d.ts +++ b/packages/svelte/elements.d.ts @@ -882,6 +882,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 { @@ -1016,6 +1017,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;