XHTMLAttributes -> HTMLXAttributes

pull/7649/head
Simon Holthausen 4 years ago
parent 5d7c18fe69
commit 2d262d3817

202
html/index.d.ts vendored

@ -547,7 +547,7 @@ export type HTMLAttributeAnchorTarget =
| '_top' | '_top'
| (string & {}); | (string & {});
export interface AnchorHTMLAttributes extends HTMLAttributes<HTMLAnchorElement> { export interface HTMLAnchorAttributes extends HTMLAttributes<HTMLAnchorElement> {
download?: any; download?: any;
href?: string | undefined | null; href?: string | undefined | null;
hreflang?: string | undefined | null; hreflang?: string | undefined | null;
@ -568,9 +568,9 @@ export interface AnchorHTMLAttributes extends HTMLAttributes<HTMLAnchorElement>
'sapper:prefetch'?: true | undefined | null; 'sapper:prefetch'?: true | undefined | null;
} }
export interface AudioHTMLAttributes extends MediaHTMLAttributes<HTMLAudioElement> {} export interface HTMLAudioAttributes extends HTMLMediaAttributes<HTMLAudioElement> {}
export interface AreaHTMLAttributes extends HTMLAttributes<HTMLAreaElement> { export interface HTMLAreaAttributes extends HTMLAttributes<HTMLAreaElement> {
alt?: string | undefined | null; alt?: string | undefined | null;
coords?: string | undefined | null; coords?: string | undefined | null;
download?: any; download?: any;
@ -584,16 +584,16 @@ export interface AreaHTMLAttributes extends HTMLAttributes<HTMLAreaElement> {
ping?: string | undefined | null; ping?: string | undefined | null;
} }
export interface BaseHTMLAttributes extends HTMLAttributes<HTMLBaseElement> { export interface HTMLBaseAttributes extends HTMLAttributes<HTMLBaseElement> {
href?: string | undefined | null; href?: string | undefined | null;
target?: string | undefined | null; target?: string | undefined | null;
} }
export interface BlockquoteHTMLAttributes extends HTMLAttributes<HTMLQuoteElement> { export interface HTMLBlockquoteAttributes extends HTMLAttributes<HTMLQuoteElement> {
cite?: string | undefined | null; cite?: string | undefined | null;
} }
export interface ButtonHTMLAttributes extends HTMLAttributes<HTMLButtonElement> { export interface HTMLButtonAttributes extends HTMLAttributes<HTMLButtonElement> {
disabled?: boolean | undefined | null; disabled?: boolean | undefined | null;
form?: string | undefined | null; form?: string | undefined | null;
formaction?: string | undefined | null; formaction?: string | undefined | null;
@ -606,51 +606,51 @@ export interface ButtonHTMLAttributes extends HTMLAttributes<HTMLButtonElement>
value?: string | string[] | number | undefined | null; value?: string | string[] | number | undefined | null;
} }
export interface CanvasHTMLAttributes extends HTMLAttributes<HTMLCanvasElement> { export interface HTMLCanvasAttributes extends HTMLAttributes<HTMLCanvasElement> {
height?: number | string | undefined | null; height?: number | string | undefined | null;
width?: number | string | undefined | null; width?: number | string | undefined | null;
} }
export interface ColHTMLAttributes extends HTMLAttributes<HTMLTableColElement> { export interface HTMLColAttributes extends HTMLAttributes<HTMLTableColElement> {
span?: number | undefined | null; span?: number | undefined | null;
width?: number | string | undefined | null; width?: number | string | undefined | null;
} }
export interface ColgroupHTMLAttributes extends HTMLAttributes<HTMLTableColElement> { export interface HTMLColgroupAttributes extends HTMLAttributes<HTMLTableColElement> {
span?: number | undefined | null; span?: number | undefined | null;
} }
export interface DataHTMLAttributes extends HTMLAttributes<HTMLDataElement> { export interface HTMLDataAttributes extends HTMLAttributes<HTMLDataElement> {
value?: string | string[] | number | undefined | null; value?: string | string[] | number | undefined | null;
} }
export interface DetailsHTMLAttributes extends HTMLAttributes<HTMLDetailsElement> { export interface HTMLDetailsAttributes extends HTMLAttributes<HTMLDetailsElement> {
open?: boolean | undefined | null; open?: boolean | undefined | null;
} }
export interface DelHTMLAttributes extends HTMLAttributes<HTMLModElement> { export interface HTMLDelAttributes extends HTMLAttributes<HTMLModElement> {
cite?: string | undefined | null; cite?: string | undefined | null;
datetime?: string | undefined | null; datetime?: string | undefined | null;
} }
export interface DialogHTMLAttributes extends HTMLAttributes<HTMLDialogElement> { export interface HTMLDialogAttributes extends HTMLAttributes<HTMLDialogElement> {
open?: boolean | undefined | null; open?: boolean | undefined | null;
} }
export interface EmbedHTMLAttributes extends HTMLAttributes<HTMLEmbedElement> { export interface HTMLEmbedAttributes extends HTMLAttributes<HTMLEmbedElement> {
height?: number | string | undefined | null; height?: number | string | undefined | null;
src?: string | undefined | null; src?: string | undefined | null;
type?: string | undefined | null; type?: string | undefined | null;
width?: number | string | undefined | null; width?: number | string | undefined | null;
} }
export interface FieldsetHTMLAttributes extends HTMLAttributes<HTMLFieldSetElement> { export interface HTMLFieldsetAttributes extends HTMLAttributes<HTMLFieldSetElement> {
disabled?: boolean | undefined | null; disabled?: boolean | undefined | null;
form?: string | undefined | null; form?: string | undefined | null;
name?: string | undefined | null; name?: string | undefined | null;
} }
export interface FormHTMLAttributes extends HTMLAttributes<HTMLFormElement> { export interface HTMLFormAttributes extends HTMLAttributes<HTMLFormElement> {
acceptcharset?: string | undefined | null; acceptcharset?: string | undefined | null;
action?: string | undefined | null; action?: string | undefined | null;
autocomplete?: string | undefined | null; autocomplete?: string | undefined | null;
@ -662,11 +662,11 @@ export interface FormHTMLAttributes extends HTMLAttributes<HTMLFormElement> {
rel?: string | undefined | null; rel?: string | undefined | null;
} }
export interface HtmlHTMLAttributes extends HTMLAttributes<HTMLHtmlElement> { export interface HTMLHtmlAttributes extends HTMLAttributes<HTMLHtmlElement> {
manifest?: string | undefined | null; manifest?: string | undefined | null;
} }
export interface IframeHTMLAttributes extends HTMLAttributes<HTMLIFrameElement> { export interface HTMLIframeAttributes extends HTMLAttributes<HTMLIFrameElement> {
allow?: string | undefined | null; allow?: string | undefined | null;
allowfullscreen?: boolean | undefined | null; allowfullscreen?: boolean | undefined | null;
allowtransparency?: boolean | undefined | null; allowtransparency?: boolean | undefined | null;
@ -689,7 +689,7 @@ export interface IframeHTMLAttributes extends HTMLAttributes<HTMLIFrameElement>
width?: number | string | undefined | null; width?: number | string | undefined | null;
} }
export interface ImgHTMLAttributes extends HTMLAttributes<HTMLImageElement> { export interface HTMLImgAttributes extends HTMLAttributes<HTMLImageElement> {
alt?: string | undefined | null; alt?: string | undefined | null;
crossorigin?: 'anonymous' | 'use-credentials' | '' | undefined | null; crossorigin?: 'anonymous' | 'use-credentials' | '' | undefined | null;
decoding?: 'async' | 'auto' | 'sync' | undefined | null; decoding?: 'async' | 'auto' | 'sync' | undefined | null;
@ -704,7 +704,7 @@ export interface ImgHTMLAttributes extends HTMLAttributes<HTMLImageElement> {
width?: number | string | undefined | null; width?: number | string | undefined | null;
} }
export interface InsHTMLAttributes extends HTMLAttributes<HTMLModElement> { export interface HTMLInsAttributes extends HTMLAttributes<HTMLModElement> {
cite?: string | undefined | null; cite?: string | undefined | null;
datetime?: string | undefined | null; datetime?: string | undefined | null;
} }
@ -734,7 +734,7 @@ export type HTMLInputTypeAttribute =
| 'week' | 'week'
| (string & {}); | (string & {});
export interface InputHTMLAttributes extends HTMLAttributes<HTMLInputElement> { export interface HTMLInputAttributes extends HTMLAttributes<HTMLInputElement> {
accept?: string | undefined | null; accept?: string | undefined | null;
alt?: string | undefined | null; alt?: string | undefined | null;
autocomplete?: string | undefined | null; autocomplete?: string | undefined | null;
@ -775,7 +775,7 @@ export interface InputHTMLAttributes extends HTMLAttributes<HTMLInputElement> {
indeterminate?: boolean | undefined | null; indeterminate?: boolean | undefined | null;
} }
export interface KeygenHTMLAttributes extends HTMLAttributes<HTMLElement> { export interface HTMLKeygenAttributes extends HTMLAttributes<HTMLElement> {
challenge?: string | undefined | null; challenge?: string | undefined | null;
disabled?: boolean | undefined | null; disabled?: boolean | undefined | null;
form?: string | undefined | null; form?: string | undefined | null;
@ -784,16 +784,16 @@ export interface KeygenHTMLAttributes extends HTMLAttributes<HTMLElement> {
name?: string | undefined | null; name?: string | undefined | null;
} }
export interface LabelHTMLAttributes extends HTMLAttributes<HTMLLabelElement> { export interface HTMLLabelAttributes extends HTMLAttributes<HTMLLabelElement> {
form?: string | undefined | null; form?: string | undefined | null;
for?: string | undefined | null; for?: string | undefined | null;
} }
export interface LiHTMLAttributes extends HTMLAttributes<HTMLLIElement> { export interface HTMLLiAttributes extends HTMLAttributes<HTMLLIElement> {
value?: string | string[] | number | undefined | null; value?: string | string[] | number | undefined | null;
} }
export interface LinkHTMLAttributes extends HTMLAttributes<HTMLLinkElement> { export interface HTMLLinkAttributes extends HTMLAttributes<HTMLLinkElement> {
as?: string | undefined | null; as?: string | undefined | null;
crossorigin?: string | undefined | null; crossorigin?: string | undefined | null;
href?: string | undefined | null; href?: string | undefined | null;
@ -809,15 +809,15 @@ export interface LinkHTMLAttributes extends HTMLAttributes<HTMLLinkElement> {
charset?: string | undefined | null; charset?: string | undefined | null;
} }
export interface MapHTMLAttributes extends HTMLAttributes<HTMLMapElement> { export interface HTMLMapAttributes extends HTMLAttributes<HTMLMapElement> {
name?: string | undefined | null; name?: string | undefined | null;
} }
export interface MenuHTMLAttributes extends HTMLAttributes<HTMLMenuElement> { export interface HTMLMenuAttributes extends HTMLAttributes<HTMLMenuElement> {
type?: string | undefined | null; type?: string | undefined | null;
} }
export interface MediaHTMLAttributes<T extends HTMLMediaElement> extends HTMLAttributes<T> { export interface HTMLMediaAttributes<T extends HTMLMediaElement> extends HTMLAttributes<T> {
autoplay?: boolean | undefined | null; autoplay?: boolean | undefined | null;
controls?: boolean | undefined | null; controls?: boolean | undefined | null;
controlslist?: 'nodownload' | 'nofullscreen' | 'noplaybackrate' | 'noremoteplayback' | (string & {}) | undefined | null; controlslist?: 'nodownload' | 'nofullscreen' | 'noplaybackrate' | 'noremoteplayback' | (string & {}) | undefined | null;
@ -854,7 +854,7 @@ export interface MediaHTMLAttributes<T extends HTMLMediaElement> extends HTMLAtt
paused?: boolean | undefined | null; paused?: boolean | undefined | null;
} }
export interface MetaHTMLAttributes extends HTMLAttributes<HTMLMetaElement> { export interface HTMLMetaAttributes extends HTMLAttributes<HTMLMetaElement> {
charSet?: string | undefined | null; charSet?: string | undefined | null;
content?: string | undefined | null; content?: string | undefined | null;
httpequiv?: string | undefined | null; httpequiv?: string | undefined | null;
@ -862,7 +862,7 @@ export interface MetaHTMLAttributes extends HTMLAttributes<HTMLMetaElement> {
media?: string | undefined | null; media?: string | undefined | null;
} }
export interface MeterHTMLAttributes extends HTMLAttributes<HTMLMeterElement> { export interface HTMLMeterAttributes extends HTMLAttributes<HTMLMeterElement> {
form?: string | undefined | null; form?: string | undefined | null;
high?: number | undefined | null; high?: number | undefined | null;
low?: number | undefined | null; low?: number | undefined | null;
@ -872,11 +872,11 @@ export interface MeterHTMLAttributes extends HTMLAttributes<HTMLMeterElement> {
value?: string | string[] | number | undefined | null; value?: string | string[] | number | undefined | null;
} }
export interface QuoteHTMLAttributes extends HTMLAttributes<HTMLQuoteElement> { export interface HTMLQuoteAttributes extends HTMLAttributes<HTMLQuoteElement> {
cite?: string | undefined | null; cite?: string | undefined | null;
} }
export interface ObjectHTMLAttributes extends HTMLAttributes<HTMLObjectElement> { export interface HTMLObjectAttributes extends HTMLAttributes<HTMLObjectElement> {
classid?: string | undefined | null; classid?: string | undefined | null;
data?: string | undefined | null; data?: string | undefined | null;
form?: string | undefined | null; form?: string | undefined | null;
@ -888,45 +888,45 @@ export interface ObjectHTMLAttributes extends HTMLAttributes<HTMLObjectElement>
wmode?: string | undefined | null; wmode?: string | undefined | null;
} }
export interface OlHTMLAttributes extends HTMLAttributes<HTMLOListElement> { export interface HTMLOlAttributes extends HTMLAttributes<HTMLOListElement> {
reversed?: boolean | undefined | null; reversed?: boolean | undefined | null;
start?: number | undefined | null; start?: number | undefined | null;
type?: '1' | 'a' | 'A' | 'i' | 'I' | undefined | null; type?: '1' | 'a' | 'A' | 'i' | 'I' | undefined | null;
} }
export interface OptgroupHTMLAttributes extends HTMLAttributes<HTMLOptGroupElement> { export interface HTMLOptgroupAttributes extends HTMLAttributes<HTMLOptGroupElement> {
disabled?: boolean | undefined | null; disabled?: boolean | undefined | null;
label?: string | undefined | null; label?: string | undefined | null;
} }
export interface OptionHTMLAttributes extends HTMLAttributes<HTMLOptionElement> { export interface HTMLOptionAttributes extends HTMLAttributes<HTMLOptionElement> {
disabled?: boolean | undefined | null; disabled?: boolean | undefined | null;
label?: string | undefined | null; label?: string | undefined | null;
selected?: boolean | undefined | null; selected?: boolean | undefined | null;
value?: any; value?: any;
} }
export interface OutputHTMLAttributes extends HTMLAttributes<HTMLOutputElement> { export interface HTMLOutputAttributes extends HTMLAttributes<HTMLOutputElement> {
form?: string | undefined | null; form?: string | undefined | null;
for?: string | undefined | null; for?: string | undefined | null;
name?: string | undefined | null; name?: string | undefined | null;
} }
export interface ParamHTMLAttributes extends HTMLAttributes<HTMLParamElement> { export interface HTMLParamAttributes extends HTMLAttributes<HTMLParamElement> {
name?: string | undefined | null; name?: string | undefined | null;
value?: string | string[] | number | undefined | null; value?: string | string[] | number | undefined | null;
} }
export interface ProgressHTMLAttributes extends HTMLAttributes<HTMLProgressElement> { export interface HTMLProgressAttributes extends HTMLAttributes<HTMLProgressElement> {
max?: number | string | undefined | null; max?: number | string | undefined | null;
value?: string | string[] | number | undefined | null; value?: string | string[] | number | undefined | null;
} }
export interface SlotHTMLAttributes extends HTMLAttributes<HTMLSlotElement> { export interface HTMLSlotAttributes extends HTMLAttributes<HTMLSlotElement> {
name?: string | undefined | null; name?: string | undefined | null;
} }
export interface ScriptHTMLAttributes extends HTMLAttributes<HTMLScriptElement> { export interface HTMLScriptAttributes extends HTMLAttributes<HTMLScriptElement> {
async?: boolean | undefined | null; async?: boolean | undefined | null;
/** @deprecated */ /** @deprecated */
charset?: string | undefined | null; charset?: string | undefined | null;
@ -940,7 +940,7 @@ export interface ScriptHTMLAttributes extends HTMLAttributes<HTMLScriptElement>
type?: string | undefined | null; type?: string | undefined | null;
} }
export interface SelectHTMLAttributes extends HTMLAttributes<HTMLSelectElement> { export interface HTMLSelectAttributes extends HTMLAttributes<HTMLSelectElement> {
autocomplete?: string | undefined | null; autocomplete?: string | undefined | null;
disabled?: boolean | undefined | null; disabled?: boolean | undefined | null;
form?: string | undefined | null; form?: string | undefined | null;
@ -953,7 +953,7 @@ export interface SelectHTMLAttributes extends HTMLAttributes<HTMLSelectElement>
'on:change'?: ChangeEventHandler<HTMLSelectElement> | undefined | null; 'on:change'?: ChangeEventHandler<HTMLSelectElement> | undefined | null;
} }
export interface SourceHTMLAttributes extends HTMLAttributes<HTMLSourceElement> { export interface HTMLSourceAttributes extends HTMLAttributes<HTMLSourceElement> {
height?: number | string | undefined | null; height?: number | string | undefined | null;
media?: string | undefined | null; media?: string | undefined | null;
sizes?: string | undefined | null; sizes?: string | undefined | null;
@ -963,14 +963,14 @@ export interface SourceHTMLAttributes extends HTMLAttributes<HTMLSourceElement>
width?: number | string | undefined | null; width?: number | string | undefined | null;
} }
export interface StyleHTMLAttributes extends HTMLAttributes<HTMLStyleElement> { export interface HTMLStyleAttributes extends HTMLAttributes<HTMLStyleElement> {
media?: string | undefined | null; media?: string | undefined | null;
nonce?: string | undefined | null; nonce?: string | undefined | null;
scoped?: boolean | undefined | null; scoped?: boolean | undefined | null;
type?: string | undefined | null; type?: string | undefined | null;
} }
export interface TableHTMLAttributes extends HTMLAttributes<HTMLTableElement> { export interface HTMLTableAttributes extends HTMLAttributes<HTMLTableElement> {
align?: 'left' | 'center' | 'right' | undefined | null; align?: 'left' | 'center' | 'right' | undefined | null;
bgcolor?: string | undefined | null; bgcolor?: string | undefined | null;
border?: number | undefined | null; border?: number | undefined | null;
@ -982,7 +982,7 @@ export interface TableHTMLAttributes extends HTMLAttributes<HTMLTableElement> {
width?: number | string | undefined | null; width?: number | string | undefined | null;
} }
export interface TextareaHTMLAttributes extends HTMLAttributes<HTMLTextAreaElement> { export interface HTMLTextareaAttributes extends HTMLAttributes<HTMLTextAreaElement> {
autocomplete?: string | undefined | null; autocomplete?: string | undefined | null;
cols?: number | undefined | null; cols?: number | undefined | null;
dirname?: string | undefined | null; dirname?: string | undefined | null;
@ -1001,7 +1001,7 @@ export interface TextareaHTMLAttributes extends HTMLAttributes<HTMLTextAreaEleme
'on:change'?: ChangeEventHandler<HTMLTextAreaElement> | undefined | null; 'on:change'?: ChangeEventHandler<HTMLTextAreaElement> | undefined | null;
} }
export interface TdHTMLAttributes extends HTMLAttributes<HTMLTableCellElement> { export interface HTMLTdAttributes extends HTMLAttributes<HTMLTableCellElement> {
align?: 'left' | 'center' | 'right' | 'justify' | 'char' | undefined | null; align?: 'left' | 'center' | 'right' | 'justify' | 'char' | undefined | null;
colspan?: number | undefined | null; colspan?: number | undefined | null;
headers?: string | undefined | null; headers?: string | undefined | null;
@ -1013,7 +1013,7 @@ export interface TdHTMLAttributes extends HTMLAttributes<HTMLTableCellElement> {
valign?: 'top' | 'middle' | 'bottom' | 'baseline' | undefined | null; valign?: 'top' | 'middle' | 'bottom' | 'baseline' | undefined | null;
} }
export interface ThHTMLAttributes extends HTMLAttributes<HTMLTableCellElement> { export interface HTMLThAttributes extends HTMLAttributes<HTMLTableCellElement> {
align?: 'left' | 'center' | 'right' | 'justify' | 'char' | undefined | null; align?: 'left' | 'center' | 'right' | 'justify' | 'char' | undefined | null;
colspan?: number | undefined | null; colspan?: number | undefined | null;
headers?: string | undefined | null; headers?: string | undefined | null;
@ -1022,11 +1022,11 @@ export interface ThHTMLAttributes extends HTMLAttributes<HTMLTableCellElement> {
abbr?: string | undefined | null; abbr?: string | undefined | null;
} }
export interface TimeHTMLAttributes extends HTMLAttributes<HTMLTimeElement> { export interface HTMLTimeAttributes extends HTMLAttributes<HTMLTimeElement> {
datetime?: string | undefined | null; datetime?: string | undefined | null;
} }
export interface TrackHTMLAttributes extends HTMLAttributes<HTMLTrackElement> { export interface HTMLTrackAttributes extends HTMLAttributes<HTMLTrackElement> {
default?: boolean | undefined | null; default?: boolean | undefined | null;
kind?: string | undefined | null; kind?: string | undefined | null;
label?: string | undefined | null; label?: string | undefined | null;
@ -1034,7 +1034,7 @@ export interface TrackHTMLAttributes extends HTMLAttributes<HTMLTrackElement> {
srclang?: string | undefined | null; srclang?: string | undefined | null;
} }
export interface VideoHTMLAttributes extends MediaHTMLAttributes<HTMLVideoElement> { export interface HTMLVideoAttributes extends HTMLMediaAttributes<HTMLVideoElement> {
height?: number | string | undefined | null; height?: number | string | undefined | null;
playsinline?: boolean | undefined | null; playsinline?: boolean | undefined | null;
poster?: string | undefined | null; poster?: string | undefined | null;
@ -1362,7 +1362,7 @@ export interface SVGAttributes<T extends EventTarget> extends AriaAttributes, DO
zoomAndPan?: string | undefined | null; zoomAndPan?: string | undefined | null;
} }
export interface WebViewHTMLAttributes extends HTMLAttributes<HTMLElement> { export interface HTMLWebViewAttributes extends HTMLAttributes<HTMLElement> {
allowfullscreen?: boolean | undefined | null; allowfullscreen?: boolean | undefined | null;
allowpopups?: boolean | undefined | null; allowpopups?: boolean | undefined | null;
autosize?: boolean | undefined | null; autosize?: boolean | undefined | null;
@ -1386,45 +1386,45 @@ export interface WebViewHTMLAttributes extends HTMLAttributes<HTMLElement> {
// ---------------------------------------------------------------------- // ----------------------------------------------------------------------
export interface SvelteHTMLElements { export interface SvelteHTMLElements {
a: AnchorHTMLAttributes; a: HTMLAnchorAttributes;
abbr: HTMLAttributes<HTMLElement>; abbr: HTMLAttributes<HTMLElement>;
address: HTMLAttributes<HTMLElement>; address: HTMLAttributes<HTMLElement>;
area: AreaHTMLAttributes; area: HTMLAreaAttributes;
article: HTMLAttributes<HTMLElement>; article: HTMLAttributes<HTMLElement>;
aside: HTMLAttributes<HTMLElement>; aside: HTMLAttributes<HTMLElement>;
audio: AudioHTMLAttributes; audio: HTMLAudioAttributes;
b: HTMLAttributes<HTMLElement>; b: HTMLAttributes<HTMLElement>;
base: BaseHTMLAttributes; base: HTMLBaseAttributes;
bdi: HTMLAttributes<HTMLElement>; bdi: HTMLAttributes<HTMLElement>;
bdo: HTMLAttributes<HTMLElement>; bdo: HTMLAttributes<HTMLElement>;
big: HTMLAttributes<HTMLElement>; big: HTMLAttributes<HTMLElement>;
blockquote: BlockquoteHTMLAttributes; blockquote: HTMLBlockquoteAttributes;
body: HTMLAttributes<HTMLBodyElement>; body: HTMLAttributes<HTMLBodyElement>;
br: HTMLAttributes<HTMLBRElement>; br: HTMLAttributes<HTMLBRElement>;
button: ButtonHTMLAttributes; button: HTMLButtonAttributes;
canvas: CanvasHTMLAttributes; canvas: HTMLCanvasAttributes;
caption: HTMLAttributes<HTMLElement>; caption: HTMLAttributes<HTMLElement>;
cite: HTMLAttributes<HTMLElement>; cite: HTMLAttributes<HTMLElement>;
code: HTMLAttributes<HTMLElement>; code: HTMLAttributes<HTMLElement>;
col: ColHTMLAttributes; col: HTMLColAttributes;
colgroup: ColgroupHTMLAttributes; colgroup: HTMLColgroupAttributes;
data: DataHTMLAttributes; data: HTMLDataAttributes;
datalist: HTMLAttributes<HTMLDataListElement>; datalist: HTMLAttributes<HTMLDataListElement>;
dd: HTMLAttributes<HTMLElement>; dd: HTMLAttributes<HTMLElement>;
del: DelHTMLAttributes; del: HTMLDelAttributes;
details: DetailsHTMLAttributes; details: HTMLDetailsAttributes;
dfn: HTMLAttributes<HTMLElement>; dfn: HTMLAttributes<HTMLElement>;
dialog: DialogHTMLAttributes; dialog: HTMLDialogAttributes;
div: HTMLAttributes<HTMLDivElement>; div: HTMLAttributes<HTMLDivElement>;
dl: HTMLAttributes<HTMLDListElement>; dl: HTMLAttributes<HTMLDListElement>;
dt: HTMLAttributes<HTMLElement>; dt: HTMLAttributes<HTMLElement>;
em: HTMLAttributes<HTMLElement>; em: HTMLAttributes<HTMLElement>;
embed: EmbedHTMLAttributes; embed: HTMLEmbedAttributes;
fieldset: FieldsetHTMLAttributes; fieldset: HTMLFieldsetAttributes;
figcaption: HTMLAttributes<HTMLElement>; figcaption: HTMLAttributes<HTMLElement>;
figure: HTMLAttributes<HTMLElement>; figure: HTMLAttributes<HTMLElement>;
footer: HTMLAttributes<HTMLElement>; footer: HTMLAttributes<HTMLElement>;
form: FormHTMLAttributes; form: HTMLFormAttributes;
h1: HTMLAttributes<HTMLHeadingElement>; h1: HTMLAttributes<HTMLHeadingElement>;
h2: HTMLAttributes<HTMLHeadingElement>; h2: HTMLAttributes<HTMLHeadingElement>;
h3: HTMLAttributes<HTMLHeadingElement>; h3: HTMLAttributes<HTMLHeadingElement>;
@ -1435,73 +1435,73 @@ export interface SvelteHTMLElements {
header: HTMLAttributes<HTMLElement>; header: HTMLAttributes<HTMLElement>;
hgroup: HTMLAttributes<HTMLElement>; hgroup: HTMLAttributes<HTMLElement>;
hr: HTMLAttributes<HTMLHRElement>; hr: HTMLAttributes<HTMLHRElement>;
html: HtmlHTMLAttributes; html: HTMLHtmlAttributes;
i: HTMLAttributes<HTMLElement>; i: HTMLAttributes<HTMLElement>;
iframe: IframeHTMLAttributes; iframe: HTMLIframeAttributes;
img: ImgHTMLAttributes; img: HTMLImgAttributes;
input: InputHTMLAttributes; input: HTMLInputAttributes;
ins: InsHTMLAttributes; ins: HTMLInsAttributes;
kbd: HTMLAttributes<HTMLElement>; kbd: HTMLAttributes<HTMLElement>;
keygen: KeygenHTMLAttributes; keygen: HTMLKeygenAttributes;
label: LabelHTMLAttributes; label: HTMLLabelAttributes;
legend: HTMLAttributes<HTMLLegendElement>; legend: HTMLAttributes<HTMLLegendElement>;
li: LiHTMLAttributes; li: HTMLLiAttributes;
link: LinkHTMLAttributes; link: HTMLLinkAttributes;
main: HTMLAttributes<HTMLElement>; main: HTMLAttributes<HTMLElement>;
map: MapHTMLAttributes; map: HTMLMapAttributes;
mark: HTMLAttributes<HTMLElement>; mark: HTMLAttributes<HTMLElement>;
menu: MenuHTMLAttributes; menu: HTMLMenuAttributes;
menuitem: HTMLAttributes<HTMLElement>; menuitem: HTMLAttributes<HTMLElement>;
meta: MetaHTMLAttributes; meta: HTMLMetaAttributes;
meter: MeterHTMLAttributes; meter: HTMLMeterAttributes;
nav: HTMLAttributes<HTMLElement>; nav: HTMLAttributes<HTMLElement>;
noscript: HTMLAttributes<HTMLElement>; noscript: HTMLAttributes<HTMLElement>;
object: ObjectHTMLAttributes; object: HTMLObjectAttributes;
ol: OlHTMLAttributes; ol: HTMLOlAttributes;
optgroup: OptgroupHTMLAttributes; optgroup: HTMLOptgroupAttributes;
option: OptionHTMLAttributes; option: HTMLOptionAttributes;
output: OutputHTMLAttributes; output: HTMLOutputAttributes;
p: HTMLAttributes<HTMLParagraphElement>; p: HTMLAttributes<HTMLParagraphElement>;
param: ParamHTMLAttributes; param: HTMLParamAttributes;
picture: HTMLAttributes<HTMLElement>; picture: HTMLAttributes<HTMLElement>;
pre: HTMLAttributes<HTMLPreElement>; pre: HTMLAttributes<HTMLPreElement>;
progress: ProgressHTMLAttributes; progress: HTMLProgressAttributes;
q: QuoteHTMLAttributes; q: HTMLQuoteAttributes;
rp: HTMLAttributes<HTMLElement>; rp: HTMLAttributes<HTMLElement>;
rt: HTMLAttributes<HTMLElement>; rt: HTMLAttributes<HTMLElement>;
ruby: HTMLAttributes<HTMLElement>; ruby: HTMLAttributes<HTMLElement>;
s: HTMLAttributes<HTMLElement>; s: HTMLAttributes<HTMLElement>;
samp: HTMLAttributes<HTMLElement>; samp: HTMLAttributes<HTMLElement>;
slot: SlotHTMLAttributes; slot: HTMLSlotAttributes;
script: ScriptHTMLAttributes; script: HTMLScriptAttributes;
section: HTMLAttributes<HTMLElement>; section: HTMLAttributes<HTMLElement>;
select: SelectHTMLAttributes; select: HTMLSelectAttributes;
small: HTMLAttributes<HTMLElement>; small: HTMLAttributes<HTMLElement>;
source: SourceHTMLAttributes; source: HTMLSourceAttributes;
span: HTMLAttributes<HTMLSpanElement>; span: HTMLAttributes<HTMLSpanElement>;
strong: HTMLAttributes<HTMLElement>; strong: HTMLAttributes<HTMLElement>;
style: StyleHTMLAttributes; style: HTMLStyleAttributes;
sub: HTMLAttributes<HTMLElement>; sub: HTMLAttributes<HTMLElement>;
summary: HTMLAttributes<HTMLElement>; summary: HTMLAttributes<HTMLElement>;
sup: HTMLAttributes<HTMLElement>; sup: HTMLAttributes<HTMLElement>;
table: TableHTMLAttributes; table: HTMLTableAttributes;
template: HTMLAttributes<HTMLTemplateElement>; template: HTMLAttributes<HTMLTemplateElement>;
tbody: HTMLAttributes<HTMLTableSectionElement>; tbody: HTMLAttributes<HTMLTableSectionElement>;
td: TdHTMLAttributes; td: HTMLTdAttributes;
textarea: TextareaHTMLAttributes; textarea: HTMLTextareaAttributes;
tfoot: HTMLAttributes<HTMLTableSectionElement>; tfoot: HTMLAttributes<HTMLTableSectionElement>;
th: ThHTMLAttributes; th: HTMLThAttributes;
thead: HTMLAttributes<HTMLTableSectionElement>; thead: HTMLAttributes<HTMLTableSectionElement>;
time: TimeHTMLAttributes; time: HTMLTimeAttributes;
title: HTMLAttributes<HTMLTitleElement>; title: HTMLAttributes<HTMLTitleElement>;
tr: HTMLAttributes<HTMLTableRowElement>; tr: HTMLAttributes<HTMLTableRowElement>;
track: TrackHTMLAttributes; track: HTMLTrackAttributes;
u: HTMLAttributes<HTMLElement>; u: HTMLAttributes<HTMLElement>;
ul: HTMLAttributes<HTMLUListElement>; ul: HTMLAttributes<HTMLUListElement>;
"var": HTMLAttributes<HTMLElement>; "var": HTMLAttributes<HTMLElement>;
video: VideoHTMLAttributes; video: HTMLVideoAttributes;
wbr: HTMLAttributes<HTMLElement>; wbr: HTMLAttributes<HTMLElement>;
webview: WebViewHTMLAttributes; webview: HTMLWebViewAttributes;
// SVG // SVG
svg: SVGAttributes<SVGSVGElement>; svg: SVGAttributes<SVGSVGElement>;

Loading…
Cancel
Save