Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions types/JSX.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ type AriaRole =
export interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
// Standard HTML Attributes
accesskey?: string
class?: string
class?: string | string[]
contenteditable?: Booleanish | 'inherit'
contextmenu?: string
dir?: string
Expand Down Expand Up @@ -1188,7 +1188,7 @@ export interface VideoHTMLAttributes<T> extends MediaHTMLAttributes<T> {
// - union of string literals
export interface SVGAttributes<T> extends AriaAttributes, DOMAttributes<T> {
// Attributes which also defined in HTMLAttributes
class?: string
class?: string | string[]
color?: string
height?: number | string
id?: string
Expand Down