Skip to content

Commit

Permalink
fix(StrictARIA): Oops forgot to remove some (string & {}) types
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepDoge committed Nov 7, 2024
1 parent 6c044fa commit 372298f
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions lib/aria.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ export namespace StrictARIA {
| "time"
| "true"
| "false"
| (string & {})
| null
ariaDisabled: "true" | "false" | null
ariaExpanded: "true" | "false" | "undefined" | null
Expand All @@ -74,7 +73,6 @@ export namespace StrictARIA {
| "tree"
| "grid"
| "dialog"
| (string & {})
| null
ariaHidden: "true" | "false" | "undefined" | null
ariaInvalid: "true" | "false" | "grammar" | "spelling" | null
Expand All @@ -83,12 +81,7 @@ export namespace StrictARIA {
ariaModal: "true" | "false" | null
ariaMultiLine: "true" | "false" | null
ariaMultiSelectable: "true" | "false" | null
ariaOrientation:
| "horizontal"
| "vertical"
| "undefined"
| (string & {})
| null
ariaOrientation: "horizontal" | "vertical" | "undefined" | null
ariaPosInSet: `${bigint}` | null
ariaPressed: "true" | "false" | "mixed" | "undefined" | null
ariaReadOnly: "true" | "false" | null
Expand Down

0 comments on commit 372298f

Please sign in to comment.