We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1831595 commit c15e021Copy full SHA for c15e021
.changeset/made-this-up.md
@@ -0,0 +1,5 @@
1
+---
2
+'svelte': patch
3
4
+
5
+fix: add `fetchpriority` attribute type
packages/svelte/elements.d.ts
@@ -762,6 +762,7 @@ export interface HTMLImgAttributes extends HTMLAttributes<HTMLImageElement> {
762
alt?: string | undefined | null;
763
crossorigin?: 'anonymous' | 'use-credentials' | '' | undefined | null;
764
decoding?: 'async' | 'auto' | 'sync' | undefined | null;
765
+ fetchpriority?: 'auto' | 'high' | 'low' | undefined | null;
766
height?: number | string | undefined | null;
767
ismap?: boolean | undefined | null;
768
loading?: 'eager' | 'lazy' | undefined | null;
0 commit comments