Skip to content

Commit 3237554

Browse files
committed
fix(types): add undefined to fetchpriority
1 parent 56ec249 commit 3237554

File tree

1 file changed

+1
-1
lines changed
  • packages/runtime-dom/src

1 file changed

+1
-1
lines changed

packages/runtime-dom/src/jsx.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ export interface ImgHTMLAttributes extends HTMLAttributes {
519519
alt?: string | undefined
520520
crossorigin?: 'anonymous' | 'use-credentials' | '' | undefined
521521
decoding?: 'async' | 'auto' | 'sync' | undefined
522-
fetchpriority?: 'high' | 'low' | 'auto'
522+
fetchpriority?: 'high' | 'low' | 'auto' | undefined
523523
height?: Numberish | undefined
524524
loading?: 'eager' | 'lazy' | undefined
525525
referrerpolicy?: HTMLAttributeReferrerPolicy | undefined

0 commit comments

Comments
 (0)