Skip to content

Commit

Permalink
fix(jsx): redefine scope attribute as enum type (#3118)
Browse files Browse the repository at this point in the history
  • Loading branch information
yasuaki640 authored Jul 10, 2024
1 parent 5126449 commit 4c401fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jsx/intrinsic-elements.ts
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ export namespace JSX {
colspan?: number | undefined
headers?: string | undefined
rowspan?: number | undefined
scope?: string | undefined
scope?: 'row' | 'col' | 'rowgroup' | 'colgroup' | string | undefined
abbr?: string | undefined
}

Expand Down

0 comments on commit 4c401fd

Please sign in to comment.