Skip to content

Commit

Permalink
fix(typings): add crossorigin html attr to img
Browse files Browse the repository at this point in the history
  • Loading branch information
khanhduy1407 committed Dec 5, 2023
1 parent 6c40192 commit 6a62cd8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/declarations/rindo-public-runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -971,6 +971,8 @@ export namespace JSXBase {

export interface ImgHTMLAttributes<T> extends HTMLAttributes<T> {
alt?: string;
crossOrigin?: string;
crossorigin?: string;
decoding?: 'async' | 'auto' | 'sync';
importance?: 'low' | 'auto' | 'high';
height?: number | string;
Expand Down

0 comments on commit 6a62cd8

Please sign in to comment.