feat: add fetchpriority to img attrs (#10388)

* feat: add fetchpriority to img attrs

* chore: remove attr alias
pull/10398/head
Matt Kane 7 months ago committed by GitHub
parent d08e05bf7f
commit d23805a6f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -978,6 +978,7 @@ export interface HTMLImgAttributes extends HTMLAttributes<HTMLImageElement> {
alt?: string | undefined | null;
crossorigin?: 'anonymous' | 'use-credentials' | '' | undefined | null;
decoding?: 'async' | 'auto' | 'sync' | undefined | null;
fetchpriority?: 'auto' | 'high' | 'low' | undefined | null;
height?: number | string | undefined | null;
ismap?: boolean | undefined | null;
loading?: 'eager' | 'lazy' | undefined | null;

Loading…
Cancel
Save