@solidjs/h 2.0.0-experimental.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4080 @@
1
+ import * as csstype from "csstype";
2
+
3
+ /**
4
+ * Based on JSX types for Surplus and Inferno and adapted for `dom-expressions`.
5
+ *
6
+ * https://github.com/adamhaile/surplus/blob/master/index.d.ts
7
+ * https://github.com/infernojs/inferno/blob/master/packages/inferno/src/core/types.ts
8
+ *
9
+ * MathML typings coming mostly from Preact
10
+ * https://github.com/preactjs/preact/blob/07dc9f324e58569ce66634aa03fe8949b4190358/src/jsx.d.ts#L2575
11
+ *
12
+ * Checked against other frameworks via the following table:
13
+ * https://potahtml.github.io/namespace-jsx-project/index.html
14
+ *
15
+ * Note: Typings must include attributes and not properties (unless the property is special-cased,
16
+ * such textContent, event handlers, etc).
17
+ */
18
+ type DOMElement = Element;
19
+
20
+ export namespace JSX {
21
+ // START - difference with `jsx.d.ts`
22
+ type FunctionMaybe<T = unknown> = { (): T } | T;
23
+ interface FunctionElement {
24
+ (): Element;
25
+ }
26
+ // END - difference with `jsx.d.ts`
27
+
28
+ /**
29
+ * The rest of differences between `jsx-h.d.ts` and `jsx.d.ts` are:
30
+ *
31
+ * - The use of `FunctionMaybe` on attributes
32
+ * - `interface DialogHtmlAttributes` declares event handlers that shouldnt use `FunctionMaybe`
33
+ */
34
+
35
+ type Element =
36
+ | Node
37
+ | ArrayElement
38
+ | FunctionElement
39
+ | (string & {})
40
+ | number
41
+ | boolean
42
+ | null
43
+ | undefined;
44
+
45
+ interface ArrayElement extends Array<Element> {}
46
+
47
+ interface ElementClass {
48
+ // empty, libs can define requirements downstream
49
+ }
50
+ interface ElementAttributesProperty {
51
+ // empty, libs can define requirements downstream
52
+ }
53
+ interface ElementChildrenAttribute {
54
+ children: {};
55
+ }
56
+ interface EventHandler<T, E extends Event> {
57
+ (
58
+ e: E & {
59
+ currentTarget: T;
60
+ target: DOMElement;
61
+ }
62
+ ): void;
63
+ }
64
+
65
+ interface BoundEventHandler<
66
+ T,
67
+ E extends Event,
68
+ EHandler extends EventHandler<T, any> = EventHandler<T, E>
69
+ > {
70
+ 0: (data: any, ...e: Parameters<EHandler>) => void;
71
+ 1: any;
72
+ }
73
+ type EventHandlerUnion<
74
+ T,
75
+ E extends Event,
76
+ EHandler extends EventHandler<T, any> = EventHandler<T, E>
77
+ > = EHandler | BoundEventHandler<T, E, EHandler>;
78
+
79
+ interface EventHandlerWithOptions<T, E extends Event, EHandler = EventHandler<T, E>>
80
+ extends AddEventListenerOptions {
81
+ handleEvent: EHandler;
82
+ }
83
+
84
+ type EventHandlerWithOptionsUnion<
85
+ T,
86
+ E extends Event,
87
+ EHandler extends EventHandler<T, any> = EventHandler<T, E>
88
+ > = EHandler | EventHandlerWithOptions<T, E, EHandler>;
89
+
90
+ interface InputEventHandler<T, E extends InputEvent> {
91
+ (
92
+ e: E & {
93
+ currentTarget: T;
94
+ target: T extends HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement
95
+ ? T
96
+ : DOMElement;
97
+ }
98
+ ): void;
99
+ }
100
+ type InputEventHandlerUnion<T, E extends InputEvent> = EventHandlerUnion<
101
+ T,
102
+ E,
103
+ InputEventHandler<T, E>
104
+ >;
105
+
106
+ interface ChangeEventHandler<T, E extends Event> {
107
+ (
108
+ e: E & {
109
+ currentTarget: T;
110
+ target: T extends HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement
111
+ ? T
112
+ : DOMElement;
113
+ }
114
+ ): void;
115
+ }
116
+ type ChangeEventHandlerUnion<T, E extends Event> = EventHandlerUnion<
117
+ T,
118
+ E,
119
+ ChangeEventHandler<T, E>
120
+ >;
121
+
122
+ interface FocusEventHandler<T, E extends FocusEvent> {
123
+ (
124
+ e: E & {
125
+ currentTarget: T;
126
+ target: T extends HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement
127
+ ? T
128
+ : DOMElement;
129
+ }
130
+ ): void;
131
+ }
132
+ type FocusEventHandlerUnion<T, E extends FocusEvent> = EventHandlerUnion<
133
+ T,
134
+ E,
135
+ FocusEventHandler<T, E>
136
+ >;
137
+
138
+ type ClassList =
139
+ | Record<string, boolean>
140
+ | Array<string | number | boolean | null | undefined | Record<string, boolean>>;
141
+
142
+ const SERIALIZABLE: unique symbol;
143
+ interface SerializableAttributeValue {
144
+ toString(): string;
145
+ [SERIALIZABLE]: never;
146
+ }
147
+
148
+ interface IntrinsicAttributes {
149
+ ref?: unknown | ((e: unknown) => void) | undefined;
150
+ }
151
+ interface CustomAttributes<T> {
152
+ ref?: T | ((el: T) => void) | undefined;
153
+ $ServerOnly?: boolean | undefined;
154
+ }
155
+ type Accessor<T> = () => T;
156
+ interface Directives {}
157
+ interface DirectiveFunctions {
158
+ [x: string]: (el: DOMElement, accessor: Accessor<any>) => void;
159
+ }
160
+ interface ExplicitProperties {}
161
+ interface ExplicitAttributes {}
162
+ interface ExplicitBoolAttributes {}
163
+ interface CustomEvents {}
164
+ type DirectiveAttributes = {
165
+ [Key in keyof Directives as `use:${Key}`]?: Directives[Key];
166
+ };
167
+ type DirectiveFunctionAttributes<T> = {
168
+ [K in keyof DirectiveFunctions as string extends K
169
+ ? never
170
+ : `use:${K}`]?: DirectiveFunctions[K] extends (
171
+ el: infer E, // will be unknown if not provided
172
+ ...rest: infer R // use rest so that we can check whether it's provided or not
173
+ ) => void
174
+ ? T extends E // everything extends unknown if E is unknown
175
+ ? R extends [infer A] // check if has accessor provided
176
+ ? A extends Accessor<infer V>
177
+ ? V // it's an accessor
178
+ : never // it isn't, type error
179
+ : true // no accessor provided
180
+ : never // T is the wrong element
181
+ : never; // it isn't a function
182
+ };
183
+ type PropAttributes = {
184
+ [Key in keyof ExplicitProperties as `prop:${Key}`]?: ExplicitProperties[Key];
185
+ };
186
+ type AttrAttributes = {
187
+ [Key in keyof ExplicitAttributes as `attr:${Key}`]?: ExplicitAttributes[Key];
188
+ };
189
+ type BoolAttributes = {
190
+ [Key in keyof ExplicitBoolAttributes as `bool:${Key}`]?: ExplicitBoolAttributes[Key];
191
+ };
192
+ type OnAttributes<T> = {
193
+ [Key in keyof CustomEvents as `on:${Key}`]?: EventHandlerWithOptionsUnion<T, CustomEvents[Key]>;
194
+ };
195
+ interface DOMAttributes<T>
196
+ extends CustomAttributes<T>,
197
+ DirectiveAttributes,
198
+ DirectiveFunctionAttributes<T>,
199
+ PropAttributes,
200
+ AttrAttributes,
201
+ BoolAttributes,
202
+ OnAttributes<T>,
203
+ CustomEventHandlersCamelCase<T>,
204
+ CustomEventHandlersLowerCase<T>,
205
+ CustomEventHandlersNamespaced<T> {
206
+ children?: FunctionMaybe<Element | undefined>;
207
+ innerHTML?: FunctionMaybe<string | undefined>;
208
+ innerText?: FunctionMaybe<string | number | undefined>;
209
+ textContent?: FunctionMaybe<string | number | undefined>;
210
+ // camel case events
211
+ onCopy?: EventHandlerUnion<T, ClipboardEvent> | undefined;
212
+ onCut?: EventHandlerUnion<T, ClipboardEvent> | undefined;
213
+ onPaste?: EventHandlerUnion<T, ClipboardEvent> | undefined;
214
+ onCompositionEnd?: EventHandlerUnion<T, CompositionEvent> | undefined;
215
+ onCompositionStart?: EventHandlerUnion<T, CompositionEvent> | undefined;
216
+ onCompositionUpdate?: EventHandlerUnion<T, CompositionEvent> | undefined;
217
+ onFocusOut?: FocusEventHandlerUnion<T, FocusEvent> | undefined;
218
+ onFocusIn?: FocusEventHandlerUnion<T, FocusEvent> | undefined;
219
+ onEncrypted?: EventHandlerUnion<T, MediaEncryptedEvent> | undefined;
220
+ onDragExit?: EventHandlerUnion<T, DragEvent> | undefined;
221
+ // lower case events
222
+ oncopy?: EventHandlerUnion<T, ClipboardEvent> | undefined;
223
+ oncut?: EventHandlerUnion<T, ClipboardEvent> | undefined;
224
+ onpaste?: EventHandlerUnion<T, ClipboardEvent> | undefined;
225
+ oncompositionend?: EventHandlerUnion<T, CompositionEvent> | undefined;
226
+ oncompositionstart?: EventHandlerUnion<T, CompositionEvent> | undefined;
227
+ oncompositionupdate?: EventHandlerUnion<T, CompositionEvent> | undefined;
228
+ onfocusout?: FocusEventHandlerUnion<T, FocusEvent> | undefined;
229
+ onfocusin?: FocusEventHandlerUnion<T, FocusEvent> | undefined;
230
+ onencrypted?: EventHandlerUnion<T, MediaEncryptedEvent> | undefined;
231
+ ondragexit?: EventHandlerUnion<T, DragEvent> | undefined;
232
+ // lower case events
233
+ "on:copy"?: EventHandlerWithOptionsUnion<T, ClipboardEvent> | undefined;
234
+ "on:cut"?: EventHandlerWithOptionsUnion<T, ClipboardEvent> | undefined;
235
+ "on:paste"?: EventHandlerWithOptionsUnion<T, ClipboardEvent> | undefined;
236
+ "on:compositionend"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
237
+ "on:compositionstart"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
238
+ "on:compositionupdate"?: EventHandlerWithOptionsUnion<T, CompositionEvent> | undefined;
239
+ "on:focusout"?:
240
+ | EventHandlerWithOptionsUnion<T, FocusEvent, FocusEventHandler<T, FocusEvent>>
241
+ | undefined;
242
+ "on:focusin"?:
243
+ | EventHandlerWithOptionsUnion<T, FocusEvent, FocusEventHandler<T, FocusEvent>>
244
+ | undefined;
245
+ "on:encrypted"?: EventHandlerWithOptionsUnion<T, MediaEncryptedEvent> | undefined;
246
+ "on:dragexit"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
247
+ }
248
+ interface CustomEventHandlersCamelCase<T> {
249
+ onAbort?: EventHandlerUnion<T, UIEvent> | undefined;
250
+ onAnimationEnd?: EventHandlerUnion<T, AnimationEvent> | undefined;
251
+ onAnimationIteration?: EventHandlerUnion<T, AnimationEvent> | undefined;
252
+ onAnimationStart?: EventHandlerUnion<T, AnimationEvent> | undefined;
253
+ onAuxClick?: EventHandlerUnion<T, MouseEvent> | undefined;
254
+ onBeforeInput?: InputEventHandlerUnion<T, InputEvent> | undefined;
255
+ onBeforeToggle?: EventHandlerUnion<T, ToggleEvent> | undefined;
256
+ onBlur?: FocusEventHandlerUnion<T, FocusEvent> | undefined;
257
+ onCanPlay?: EventHandlerUnion<T, Event> | undefined;
258
+ onCanPlayThrough?: EventHandlerUnion<T, Event> | undefined;
259
+ onChange?: ChangeEventHandlerUnion<T, Event> | undefined;
260
+ onClick?: EventHandlerUnion<T, MouseEvent> | undefined;
261
+ onContextMenu?: EventHandlerUnion<T, MouseEvent> | undefined;
262
+ onDblClick?: EventHandlerUnion<T, MouseEvent> | undefined;
263
+ onDrag?: EventHandlerUnion<T, DragEvent> | undefined;
264
+ onDragEnd?: EventHandlerUnion<T, DragEvent> | undefined;
265
+ onDragEnter?: EventHandlerUnion<T, DragEvent> | undefined;
266
+ onDragLeave?: EventHandlerUnion<T, DragEvent> | undefined;
267
+ onDragOver?: EventHandlerUnion<T, DragEvent> | undefined;
268
+ onDragStart?: EventHandlerUnion<T, DragEvent> | undefined;
269
+ onDrop?: EventHandlerUnion<T, DragEvent> | undefined;
270
+ onDurationChange?: EventHandlerUnion<T, Event> | undefined;
271
+ onEmptied?: EventHandlerUnion<T, Event> | undefined;
272
+ onEnded?: EventHandlerUnion<T, Event> | undefined;
273
+ onError?: EventHandlerUnion<T, ErrorEvent> | undefined;
274
+ onFocus?: FocusEventHandlerUnion<T, FocusEvent> | undefined;
275
+ onGotPointerCapture?: EventHandlerUnion<T, PointerEvent> | undefined;
276
+ onInput?: InputEventHandlerUnion<T, InputEvent> | undefined;
277
+ onInvalid?: EventHandlerUnion<T, Event> | undefined;
278
+ onKeyDown?: EventHandlerUnion<T, KeyboardEvent> | undefined;
279
+ onKeyPress?: EventHandlerUnion<T, KeyboardEvent> | undefined;
280
+ onKeyUp?: EventHandlerUnion<T, KeyboardEvent> | undefined;
281
+ onLoad?: EventHandlerUnion<T, Event> | undefined;
282
+ onLoadedData?: EventHandlerUnion<T, Event> | undefined;
283
+ onLoadedMetadata?: EventHandlerUnion<T, Event> | undefined;
284
+ onLoadStart?: EventHandlerUnion<T, Event> | undefined;
285
+ onLostPointerCapture?: EventHandlerUnion<T, PointerEvent> | undefined;
286
+ onMouseDown?: EventHandlerUnion<T, MouseEvent> | undefined;
287
+ onMouseEnter?: EventHandlerUnion<T, MouseEvent> | undefined;
288
+ onMouseLeave?: EventHandlerUnion<T, MouseEvent> | undefined;
289
+ onMouseMove?: EventHandlerUnion<T, MouseEvent> | undefined;
290
+ onMouseOut?: EventHandlerUnion<T, MouseEvent> | undefined;
291
+ onMouseOver?: EventHandlerUnion<T, MouseEvent> | undefined;
292
+ onMouseUp?: EventHandlerUnion<T, MouseEvent> | undefined;
293
+ onPause?: EventHandlerUnion<T, Event> | undefined;
294
+ onPlay?: EventHandlerUnion<T, Event> | undefined;
295
+ onPlaying?: EventHandlerUnion<T, Event> | undefined;
296
+ onPointerCancel?: EventHandlerUnion<T, PointerEvent> | undefined;
297
+ onPointerDown?: EventHandlerUnion<T, PointerEvent> | undefined;
298
+ onPointerEnter?: EventHandlerUnion<T, PointerEvent> | undefined;
299
+ onPointerLeave?: EventHandlerUnion<T, PointerEvent> | undefined;
300
+ onPointerMove?: EventHandlerUnion<T, PointerEvent> | undefined;
301
+ onPointerOut?: EventHandlerUnion<T, PointerEvent> | undefined;
302
+ onPointerOver?: EventHandlerUnion<T, PointerEvent> | undefined;
303
+ onPointerUp?: EventHandlerUnion<T, PointerEvent> | undefined;
304
+ onProgress?: EventHandlerUnion<T, ProgressEvent> | undefined;
305
+ onRateChange?: EventHandlerUnion<T, Event> | undefined;
306
+ onReset?: EventHandlerUnion<T, Event> | undefined;
307
+ onScroll?: EventHandlerUnion<T, Event> | undefined;
308
+ onScrollEnd?: EventHandlerUnion<T, Event> | undefined;
309
+ onSeeked?: EventHandlerUnion<T, Event> | undefined;
310
+ onSeeking?: EventHandlerUnion<T, Event> | undefined;
311
+ onSelect?: EventHandlerUnion<T, Event> | undefined;
312
+ onStalled?: EventHandlerUnion<T, Event> | undefined;
313
+ onSubmit?: EventHandlerUnion<T, SubmitEvent> | undefined;
314
+ onSuspend?: EventHandlerUnion<T, Event> | undefined;
315
+ onTimeUpdate?: EventHandlerUnion<T, Event> | undefined;
316
+ onToggle?: EventHandlerUnion<T, ToggleEvent> | undefined;
317
+ onTouchCancel?: EventHandlerUnion<T, TouchEvent> | undefined;
318
+ onTouchEnd?: EventHandlerUnion<T, TouchEvent> | undefined;
319
+ onTouchMove?: EventHandlerUnion<T, TouchEvent> | undefined;
320
+ onTouchStart?: EventHandlerUnion<T, TouchEvent> | undefined;
321
+ onTransitionStart?: EventHandlerUnion<T, TransitionEvent> | undefined;
322
+ onTransitionEnd?: EventHandlerUnion<T, TransitionEvent> | undefined;
323
+ onTransitionRun?: EventHandlerUnion<T, TransitionEvent> | undefined;
324
+ onTransitionCancel?: EventHandlerUnion<T, TransitionEvent> | undefined;
325
+ onVolumeChange?: EventHandlerUnion<T, Event> | undefined;
326
+ onWaiting?: EventHandlerUnion<T, Event> | undefined;
327
+ onWheel?: EventHandlerUnion<T, WheelEvent> | undefined;
328
+ }
329
+ /** @type {GlobalEventHandlers} */
330
+ interface CustomEventHandlersLowerCase<T> {
331
+ onabort?: EventHandlerUnion<T, UIEvent> | undefined;
332
+ onanimationend?: EventHandlerUnion<T, AnimationEvent> | undefined;
333
+ onanimationiteration?: EventHandlerUnion<T, AnimationEvent> | undefined;
334
+ onanimationstart?: EventHandlerUnion<T, AnimationEvent> | undefined;
335
+ onauxclick?: EventHandlerUnion<T, MouseEvent> | undefined;
336
+ onbeforeinput?: InputEventHandlerUnion<T, InputEvent> | undefined;
337
+ onbeforetoggle?: EventHandlerUnion<T, ToggleEvent> | undefined;
338
+ onblur?: FocusEventHandlerUnion<T, FocusEvent> | undefined;
339
+ oncanplay?: EventHandlerUnion<T, Event> | undefined;
340
+ oncanplaythrough?: EventHandlerUnion<T, Event> | undefined;
341
+ onchange?: ChangeEventHandlerUnion<T, Event> | undefined;
342
+ onclick?: EventHandlerUnion<T, MouseEvent> | undefined;
343
+ oncontextmenu?: EventHandlerUnion<T, MouseEvent> | undefined;
344
+ ondblclick?: EventHandlerUnion<T, MouseEvent> | undefined;
345
+ ondrag?: EventHandlerUnion<T, DragEvent> | undefined;
346
+ ondragend?: EventHandlerUnion<T, DragEvent> | undefined;
347
+ ondragenter?: EventHandlerUnion<T, DragEvent> | undefined;
348
+ ondragleave?: EventHandlerUnion<T, DragEvent> | undefined;
349
+ ondragover?: EventHandlerUnion<T, DragEvent> | undefined;
350
+ ondragstart?: EventHandlerUnion<T, DragEvent> | undefined;
351
+ ondrop?: EventHandlerUnion<T, DragEvent> | undefined;
352
+ ondurationchange?: EventHandlerUnion<T, Event> | undefined;
353
+ onemptied?: EventHandlerUnion<T, Event> | undefined;
354
+ onended?: EventHandlerUnion<T, Event> | undefined;
355
+ onerror?: EventHandlerUnion<T, ErrorEvent> | undefined;
356
+ onfocus?: FocusEventHandlerUnion<T, FocusEvent> | undefined;
357
+ ongotpointercapture?: EventHandlerUnion<T, PointerEvent> | undefined;
358
+ oninput?: InputEventHandlerUnion<T, InputEvent> | undefined;
359
+ oninvalid?: EventHandlerUnion<T, Event> | undefined;
360
+ onkeydown?: EventHandlerUnion<T, KeyboardEvent> | undefined;
361
+ onkeypress?: EventHandlerUnion<T, KeyboardEvent> | undefined;
362
+ onkeyup?: EventHandlerUnion<T, KeyboardEvent> | undefined;
363
+ onload?: EventHandlerUnion<T, Event> | undefined;
364
+ onloadeddata?: EventHandlerUnion<T, Event> | undefined;
365
+ onloadedmetadata?: EventHandlerUnion<T, Event> | undefined;
366
+ onloadstart?: EventHandlerUnion<T, Event> | undefined;
367
+ onlostpointercapture?: EventHandlerUnion<T, PointerEvent> | undefined;
368
+ onmousedown?: EventHandlerUnion<T, MouseEvent> | undefined;
369
+ onmouseenter?: EventHandlerUnion<T, MouseEvent> | undefined;
370
+ onmouseleave?: EventHandlerUnion<T, MouseEvent> | undefined;
371
+ onmousemove?: EventHandlerUnion<T, MouseEvent> | undefined;
372
+ onmouseout?: EventHandlerUnion<T, MouseEvent> | undefined;
373
+ onmouseover?: EventHandlerUnion<T, MouseEvent> | undefined;
374
+ onmouseup?: EventHandlerUnion<T, MouseEvent> | undefined;
375
+ onpause?: EventHandlerUnion<T, Event> | undefined;
376
+ onplay?: EventHandlerUnion<T, Event> | undefined;
377
+ onplaying?: EventHandlerUnion<T, Event> | undefined;
378
+ onpointercancel?: EventHandlerUnion<T, PointerEvent> | undefined;
379
+ onpointerdown?: EventHandlerUnion<T, PointerEvent> | undefined;
380
+ onpointerenter?: EventHandlerUnion<T, PointerEvent> | undefined;
381
+ onpointerleave?: EventHandlerUnion<T, PointerEvent> | undefined;
382
+ onpointermove?: EventHandlerUnion<T, PointerEvent> | undefined;
383
+ onpointerout?: EventHandlerUnion<T, PointerEvent> | undefined;
384
+ onpointerover?: EventHandlerUnion<T, PointerEvent> | undefined;
385
+ onpointerup?: EventHandlerUnion<T, PointerEvent> | undefined;
386
+ onprogress?: EventHandlerUnion<T, ProgressEvent> | undefined;
387
+ onratechange?: EventHandlerUnion<T, Event> | undefined;
388
+ onreset?: EventHandlerUnion<T, Event> | undefined;
389
+ onscroll?: EventHandlerUnion<T, Event> | undefined;
390
+ onscrollend?: EventHandlerUnion<T, Event> | undefined;
391
+ onseeked?: EventHandlerUnion<T, Event> | undefined;
392
+ onseeking?: EventHandlerUnion<T, Event> | undefined;
393
+ onselect?: EventHandlerUnion<T, Event> | undefined;
394
+ onstalled?: EventHandlerUnion<T, Event> | undefined;
395
+ onsubmit?: EventHandlerUnion<T, SubmitEvent> | undefined;
396
+ onsuspend?: EventHandlerUnion<T, Event> | undefined;
397
+ ontimeupdate?: EventHandlerUnion<T, Event> | undefined;
398
+ ontoggle?: EventHandlerUnion<T, ToggleEvent> | undefined;
399
+ ontouchcancel?: EventHandlerUnion<T, TouchEvent> | undefined;
400
+ ontouchend?: EventHandlerUnion<T, TouchEvent> | undefined;
401
+ ontouchmove?: EventHandlerUnion<T, TouchEvent> | undefined;
402
+ ontouchstart?: EventHandlerUnion<T, TouchEvent> | undefined;
403
+ ontransitionstart?: EventHandlerUnion<T, TransitionEvent> | undefined;
404
+ ontransitionend?: EventHandlerUnion<T, TransitionEvent> | undefined;
405
+ ontransitionrun?: EventHandlerUnion<T, TransitionEvent> | undefined;
406
+ ontransitioncancel?: EventHandlerUnion<T, TransitionEvent> | undefined;
407
+ onvolumechange?: EventHandlerUnion<T, Event> | undefined;
408
+ onwaiting?: EventHandlerUnion<T, Event> | undefined;
409
+ onwheel?: EventHandlerUnion<T, WheelEvent> | undefined;
410
+ }
411
+ interface CustomEventHandlersNamespaced<T> {
412
+ "on:abort"?: EventHandlerWithOptionsUnion<T, UIEvent> | undefined;
413
+ "on:animationend"?: EventHandlerWithOptionsUnion<T, AnimationEvent> | undefined;
414
+ "on:animationiteration"?: EventHandlerWithOptionsUnion<T, AnimationEvent> | undefined;
415
+ "on:animationstart"?: EventHandlerWithOptionsUnion<T, AnimationEvent> | undefined;
416
+ "on:auxclick"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
417
+ "on:beforeinput"?:
418
+ | EventHandlerWithOptionsUnion<T, InputEvent, InputEventHandler<T, InputEvent>>
419
+ | undefined;
420
+ "on:beforetoggle"?: EventHandlerWithOptionsUnion<T, ToggleEvent> | undefined;
421
+ "on:blur"?:
422
+ | EventHandlerWithOptionsUnion<T, FocusEvent, FocusEventHandler<T, FocusEvent>>
423
+ | undefined;
424
+ "on:canplay"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
425
+ "on:canplaythrough"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
426
+ "on:change"?: EventHandlerWithOptionsUnion<T, Event, ChangeEventHandler<T, Event>> | undefined;
427
+ "on:click"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
428
+ "on:contextmenu"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
429
+ "on:dblclick"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
430
+ "on:drag"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
431
+ "on:dragend"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
432
+ "on:dragenter"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
433
+ "on:dragleave"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
434
+ "on:dragover"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
435
+ "on:dragstart"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
436
+ "on:drop"?: EventHandlerWithOptionsUnion<T, DragEvent> | undefined;
437
+ "on:durationchange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
438
+ "on:emptied"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
439
+ "on:ended"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
440
+ "on:error"?: EventHandlerWithOptionsUnion<T, ErrorEvent> | undefined;
441
+ "on:focus"?:
442
+ | EventHandlerWithOptionsUnion<T, FocusEvent, FocusEventHandler<T, FocusEvent>>
443
+ | undefined;
444
+ "on:gotpointercapture"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
445
+ "on:input"?:
446
+ | EventHandlerWithOptionsUnion<T, InputEvent, InputEventHandler<T, InputEvent>>
447
+ | undefined;
448
+ "on:invalid"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
449
+ "on:keydown"?: EventHandlerWithOptionsUnion<T, KeyboardEvent> | undefined;
450
+ "on:keypress"?: EventHandlerWithOptionsUnion<T, KeyboardEvent> | undefined;
451
+ "on:keyup"?: EventHandlerWithOptionsUnion<T, KeyboardEvent> | undefined;
452
+ "on:load"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
453
+ "on:loadeddata"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
454
+ "on:loadedmetadata"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
455
+ "on:loadstart"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
456
+ "on:lostpointercapture"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
457
+ "on:mousedown"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
458
+ "on:mouseenter"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
459
+ "on:mouseleave"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
460
+ "on:mousemove"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
461
+ "on:mouseout"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
462
+ "on:mouseover"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
463
+ "on:mouseup"?: EventHandlerWithOptionsUnion<T, MouseEvent> | undefined;
464
+ "on:pause"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
465
+ "on:play"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
466
+ "on:playing"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
467
+ "on:pointercancel"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
468
+ "on:pointerdown"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
469
+ "on:pointerenter"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
470
+ "on:pointerleave"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
471
+ "on:pointermove"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
472
+ "on:pointerout"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
473
+ "on:pointerover"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
474
+ "on:pointerup"?: EventHandlerWithOptionsUnion<T, PointerEvent> | undefined;
475
+ "on:progress"?: EventHandlerWithOptionsUnion<T, ProgressEvent> | undefined;
476
+ "on:ratechange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
477
+ "on:reset"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
478
+ "on:scroll"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
479
+ "on:scrollend"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
480
+ "on:seeked"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
481
+ "on:seeking"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
482
+ "on:select"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
483
+ "on:stalled"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
484
+ "on:submit"?: EventHandlerWithOptionsUnion<T, SubmitEvent> | undefined;
485
+ "on:suspend"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
486
+ "on:timeupdate"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
487
+ "on:toggle"?: EventHandlerWithOptionsUnion<T, ToggleEvent> | undefined;
488
+ "on:touchcancel"?: EventHandlerWithOptionsUnion<T, TouchEvent> | undefined;
489
+ "on:touchend"?: EventHandlerWithOptionsUnion<T, TouchEvent> | undefined;
490
+ "on:touchmove"?: EventHandlerWithOptionsUnion<T, TouchEvent> | undefined;
491
+ "on:touchstart"?: EventHandlerWithOptionsUnion<T, TouchEvent> | undefined;
492
+ "on:transitionstart"?: EventHandlerWithOptionsUnion<T, TransitionEvent> | undefined;
493
+ "on:transitionend"?: EventHandlerWithOptionsUnion<T, TransitionEvent> | undefined;
494
+ "on:transitionrun"?: EventHandlerWithOptionsUnion<T, TransitionEvent> | undefined;
495
+ "on:transitioncancel"?: EventHandlerWithOptionsUnion<T, TransitionEvent> | undefined;
496
+ "on:volumechange"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
497
+ "on:waiting"?: EventHandlerWithOptionsUnion<T, Event> | undefined;
498
+ "on:wheel"?: EventHandlerWithOptionsUnion<T, WheelEvent> | undefined;
499
+ }
500
+
501
+ interface CSSProperties extends csstype.PropertiesHyphen {
502
+ // Override
503
+ [key: `-${string}`]: string | number | undefined;
504
+ }
505
+
506
+ type HTMLAutocapitalize = "off" | "none" | "on" | "sentences" | "words" | "characters";
507
+ type HTMLDir = "ltr" | "rtl" | "auto";
508
+ type HTMLFormEncType = "application/x-www-form-urlencoded" | "multipart/form-data" | "text/plain";
509
+ type HTMLFormMethod = "post" | "get" | "dialog";
510
+ type HTMLCrossorigin = "anonymous" | "use-credentials" | "";
511
+ type HTMLReferrerPolicy =
512
+ | "no-referrer"
513
+ | "no-referrer-when-downgrade"
514
+ | "origin"
515
+ | "origin-when-cross-origin"
516
+ | "same-origin"
517
+ | "strict-origin"
518
+ | "strict-origin-when-cross-origin"
519
+ | "unsafe-url";
520
+ type HTMLIframeSandbox =
521
+ | "allow-downloads-without-user-activation"
522
+ | "allow-downloads"
523
+ | "allow-forms"
524
+ | "allow-modals"
525
+ | "allow-orientation-lock"
526
+ | "allow-pointer-lock"
527
+ | "allow-popups"
528
+ | "allow-popups-to-escape-sandbox"
529
+ | "allow-presentation"
530
+ | "allow-same-origin"
531
+ | "allow-scripts"
532
+ | "allow-storage-access-by-user-activation"
533
+ | "allow-top-navigation"
534
+ | "allow-top-navigation-by-user-activation"
535
+ | "allow-top-navigation-to-custom-protocols";
536
+ type HTMLLinkAs =
537
+ | "audio"
538
+ | "document"
539
+ | "embed"
540
+ | "fetch"
541
+ | "font"
542
+ | "image"
543
+ | "object"
544
+ | "script"
545
+ | "style"
546
+ | "track"
547
+ | "video"
548
+ | "worker";
549
+
550
+ // All the WAI-ARIA 1.1 attributes from https://www.w3.org/TR/wai-aria-1.1/
551
+ interface AriaAttributes {
552
+ /**
553
+ * Identifies the currently active element when DOM focus is on a composite widget, textbox,
554
+ * group, or application.
555
+ */
556
+ "aria-activedescendant"?: FunctionMaybe<string | undefined>;
557
+ /**
558
+ * Indicates whether assistive technologies will present all, or only parts of, the changed
559
+ * region based on the change notifications defined by the aria-relevant attribute.
560
+ */
561
+ "aria-atomic"?: FunctionMaybe<boolean | "false" | "true" | undefined>;
562
+ /**
563
+ * Indicates whether inputting text could trigger display of one or more predictions of the
564
+ * user's intended value for an input and specifies how predictions would be presented if they
565
+ * are made.
566
+ */
567
+ "aria-autocomplete"?: FunctionMaybe<"none" | "inline" | "list" | "both" | undefined>;
568
+ /**
569
+ * Indicates an element is being modified and that assistive technologies MAY want to wait until
570
+ * the modifications are complete before exposing them to the user.
571
+ */
572
+ "aria-busy"?: FunctionMaybe<boolean | "false" | "true" | undefined>;
573
+ /**
574
+ * Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.
575
+ *
576
+ * @see aria-pressed @see aria-selected.
577
+ */
578
+ "aria-checked"?: FunctionMaybe<boolean | "false" | "mixed" | "true" | undefined>;
579
+ /**
580
+ * Defines the total number of columns in a table, grid, or treegrid.
581
+ *
582
+ * @see aria-colindex.
583
+ */
584
+ "aria-colcount"?: FunctionMaybe<number | string | undefined>;
585
+ /**
586
+ * Defines an element's column index or position with respect to the total number of columns
587
+ * within a table, grid, or treegrid.
588
+ *
589
+ * @see aria-colcount @see aria-colspan.
590
+ */
591
+ "aria-colindex"?: FunctionMaybe<number | string | undefined>;
592
+ /**
593
+ * Defines the number of columns spanned by a cell or gridcell within a table, grid, or
594
+ * treegrid.
595
+ *
596
+ * @see aria-colindex @see aria-rowspan.
597
+ */
598
+ "aria-colspan"?: FunctionMaybe<number | string | undefined>;
599
+ /**
600
+ * Identifies the element (or elements) whose contents or presence are controlled by the current
601
+ * element.
602
+ *
603
+ * @see aria-owns.
604
+ */
605
+ "aria-controls"?: FunctionMaybe<string | undefined>;
606
+ /**
607
+ * Indicates the element that represents the current item within a container or set of related
608
+ * elements.
609
+ */
610
+ "aria-current"?: FunctionMaybe<
611
+ boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined
612
+ >;
613
+ /**
614
+ * Identifies the element (or elements) that describes the object.
615
+ *
616
+ * @see aria-labelledby
617
+ */
618
+ "aria-describedby"?: FunctionMaybe<string | undefined>;
619
+ /**
620
+ * Identifies the element that provides a detailed, extended description for the object.
621
+ *
622
+ * @see aria-describedby.
623
+ */
624
+ "aria-details"?: FunctionMaybe<string | undefined>;
625
+ /**
626
+ * Indicates that the element is perceivable but disabled, so it is not editable or otherwise
627
+ * operable.
628
+ *
629
+ * @see aria-hidden @see aria-readonly.
630
+ */
631
+ "aria-disabled"?: FunctionMaybe<boolean | "false" | "true" | undefined>;
632
+ /**
633
+ * Indicates what functions can be performed when a dragged object is released on the drop
634
+ * target.
635
+ *
636
+ * @deprecated In ARIA 1.1
637
+ */
638
+ "aria-dropeffect"?: FunctionMaybe<
639
+ "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined
640
+ >;
641
+ /**
642
+ * Identifies the element that provides an error message for the object.
643
+ *
644
+ * @see aria-invalid @see aria-describedby.
645
+ */
646
+ "aria-errormessage"?: FunctionMaybe<string | undefined>;
647
+ /**
648
+ * Indicates whether the element, or another grouping element it controls, is currently expanded
649
+ * or collapsed.
650
+ */
651
+ "aria-expanded"?: FunctionMaybe<boolean | "false" | "true" | undefined>;
652
+ /**
653
+ * Identifies the next element (or elements) in an alternate reading order of content which, at
654
+ * the user's discretion, allows assistive technology to override the general default of reading
655
+ * in document source order.
656
+ */
657
+ "aria-flowto"?: FunctionMaybe<string | undefined>;
658
+ /**
659
+ * Indicates an element's "grabbed" state in a drag-and-drop operation.
660
+ *
661
+ * @deprecated In ARIA 1.1
662
+ */
663
+ "aria-grabbed"?: FunctionMaybe<boolean | "false" | "true" | undefined>;
664
+ /**
665
+ * Indicates the availability and type of interactive popup element, such as menu or dialog,
666
+ * that can be triggered by an element.
667
+ */
668
+ "aria-haspopup"?: FunctionMaybe<
669
+ boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined
670
+ >;
671
+ /**
672
+ * Indicates whether the element is exposed to an accessibility API.
673
+ *
674
+ * @see aria-disabled.
675
+ */
676
+ "aria-hidden"?: FunctionMaybe<boolean | "false" | "true" | undefined>;
677
+ /**
678
+ * Indicates the entered value does not conform to the format expected by the application.
679
+ *
680
+ * @see aria-errormessage.
681
+ */
682
+ "aria-invalid"?: FunctionMaybe<boolean | "false" | "true" | "grammar" | "spelling" | undefined>;
683
+ /**
684
+ * Indicates keyboard shortcuts that an author has implemented to activate or give focus to an
685
+ * element.
686
+ */
687
+ "aria-keyshortcuts"?: FunctionMaybe<string | undefined>;
688
+ /**
689
+ * Defines a string value that labels the current element.
690
+ *
691
+ * @see aria-labelledby.
692
+ */
693
+ "aria-label"?: FunctionMaybe<string | undefined>;
694
+ /**
695
+ * Identifies the element (or elements) that labels the current element.
696
+ *
697
+ * @see aria-describedby.
698
+ */
699
+ "aria-labelledby"?: FunctionMaybe<string | undefined>;
700
+ /** Defines the hierarchical level of an element within a structure. */
701
+ "aria-level"?: FunctionMaybe<number | string | undefined>;
702
+ /**
703
+ * Indicates that an element will be updated, and describes the types of updates the user
704
+ * agents, assistive technologies, and user can expect from the live region.
705
+ */
706
+ "aria-live"?: FunctionMaybe<"off" | "assertive" | "polite" | undefined>;
707
+ /** Indicates whether an element is modal when displayed. */
708
+ "aria-modal"?: FunctionMaybe<boolean | "false" | "true" | undefined>;
709
+ /** Indicates whether a text box accepts multiple lines of input or only a single line. */
710
+ "aria-multiline"?: FunctionMaybe<boolean | "false" | "true" | undefined>;
711
+ /**
712
+ * Indicates that the user may select more than one item from the current selectable
713
+ * descendants.
714
+ */
715
+ "aria-multiselectable"?: FunctionMaybe<boolean | "false" | "true" | undefined>;
716
+ /** Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous. */
717
+ "aria-orientation"?: FunctionMaybe<"horizontal" | "vertical" | undefined>;
718
+ /**
719
+ * Identifies an element (or elements) in order to define a visual, functional, or contextual
720
+ * parent/child relationship between DOM elements where the DOM hierarchy cannot be used to
721
+ * represent the relationship.
722
+ *
723
+ * @see aria-controls.
724
+ */
725
+ "aria-owns"?: FunctionMaybe<string | undefined>;
726
+ /**
727
+ * Defines a short hint (a word or short phrase) intended to aid the user with data entry when
728
+ * the control has no value. A hint could be a sample value or a brief description of the
729
+ * expected format.
730
+ */
731
+ "aria-placeholder"?: FunctionMaybe<string | undefined>;
732
+ /**
733
+ * Defines an element's number or position in the current set of listitems or treeitems. Not
734
+ * required if all elements in the set are present in the DOM.
735
+ *
736
+ * @see aria-setsize.
737
+ */
738
+ "aria-posinset"?: FunctionMaybe<number | string | undefined>;
739
+ /**
740
+ * Indicates the current "pressed" state of toggle buttons.
741
+ *
742
+ * @see aria-checked @see aria-selected.
743
+ */
744
+ "aria-pressed"?: FunctionMaybe<boolean | "false" | "mixed" | "true" | undefined>;
745
+ /**
746
+ * Indicates that the element is not editable, but is otherwise operable.
747
+ *
748
+ * @see aria-disabled.
749
+ */
750
+ "aria-readonly"?: FunctionMaybe<boolean | "false" | "true" | undefined>;
751
+ /**
752
+ * Indicates what notifications the user agent will trigger when the accessibility tree within a
753
+ * live region is modified.
754
+ *
755
+ * @see aria-atomic.
756
+ */
757
+ "aria-relevant"?: FunctionMaybe<
758
+ | "additions"
759
+ | "additions removals"
760
+ | "additions text"
761
+ | "all"
762
+ | "removals"
763
+ | "removals additions"
764
+ | "removals text"
765
+ | "text"
766
+ | "text additions"
767
+ | "text removals"
768
+ | undefined
769
+ >;
770
+ /** Indicates that user input is required on the element before a form may be submitted. */
771
+ "aria-required"?: FunctionMaybe<boolean | "false" | "true" | undefined>;
772
+ /** Defines a human-readable, author-localized description for the role of an element. */
773
+ "aria-roledescription"?: FunctionMaybe<string | undefined>;
774
+ /**
775
+ * Defines the total number of rows in a table, grid, or treegrid.
776
+ *
777
+ * @see aria-rowindex.
778
+ */
779
+ "aria-rowcount"?: FunctionMaybe<number | string | undefined>;
780
+ /**
781
+ * Defines an element's row index or position with respect to the total number of rows within a
782
+ * table, grid, or treegrid.
783
+ *
784
+ * @see aria-rowcount @see aria-rowspan.
785
+ */
786
+ "aria-rowindex"?: FunctionMaybe<number | string | undefined>;
787
+ /**
788
+ * Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.
789
+ *
790
+ * @see aria-rowindex @see aria-colspan.
791
+ */
792
+ "aria-rowspan"?: FunctionMaybe<number | string | undefined>;
793
+ /**
794
+ * Indicates the current "selected" state of various widgets.
795
+ *
796
+ * @see aria-checked @see aria-pressed.
797
+ */
798
+ "aria-selected"?: FunctionMaybe<boolean | "false" | "true" | undefined>;
799
+ /**
800
+ * Defines the number of items in the current set of listitems or treeitems. Not required if all
801
+ * elements in the set are present in the DOM.
802
+ *
803
+ * @see aria-posinset.
804
+ */
805
+ "aria-setsize"?: FunctionMaybe<number | string | undefined>;
806
+ /** Indicates if items in a table or grid are sorted in ascending or descending order. */
807
+ "aria-sort"?: FunctionMaybe<"none" | "ascending" | "descending" | "other" | undefined>;
808
+ /** Defines the maximum allowed value for a range widget. */
809
+ "aria-valuemax"?: FunctionMaybe<number | string | undefined>;
810
+ /** Defines the minimum allowed value for a range widget. */
811
+ "aria-valuemin"?: FunctionMaybe<number | string | undefined>;
812
+ /**
813
+ * Defines the current value for a range widget.
814
+ *
815
+ * @see aria-valuetext.
816
+ */
817
+ "aria-valuenow"?: FunctionMaybe<number | string | undefined>;
818
+ /** Defines the human readable text alternative of aria-valuenow for a range widget. */
819
+ "aria-valuetext"?: FunctionMaybe<string | undefined>;
820
+ role?: FunctionMaybe<
821
+ | "alert"
822
+ | "alertdialog"
823
+ | "application"
824
+ | "article"
825
+ | "banner"
826
+ | "button"
827
+ | "cell"
828
+ | "checkbox"
829
+ | "columnheader"
830
+ | "combobox"
831
+ | "complementary"
832
+ | "contentinfo"
833
+ | "definition"
834
+ | "dialog"
835
+ | "directory"
836
+ | "document"
837
+ | "feed"
838
+ | "figure"
839
+ | "form"
840
+ | "grid"
841
+ | "gridcell"
842
+ | "group"
843
+ | "heading"
844
+ | "img"
845
+ | "link"
846
+ | "list"
847
+ | "listbox"
848
+ | "listitem"
849
+ | "log"
850
+ | "main"
851
+ | "marquee"
852
+ | "math"
853
+ | "menu"
854
+ | "menubar"
855
+ | "menuitem"
856
+ | "menuitemcheckbox"
857
+ | "menuitemradio"
858
+ | "meter"
859
+ | "navigation"
860
+ | "none"
861
+ | "note"
862
+ | "option"
863
+ | "presentation"
864
+ | "progressbar"
865
+ | "radio"
866
+ | "radiogroup"
867
+ | "region"
868
+ | "row"
869
+ | "rowgroup"
870
+ | "rowheader"
871
+ | "scrollbar"
872
+ | "search"
873
+ | "searchbox"
874
+ | "separator"
875
+ | "slider"
876
+ | "spinbutton"
877
+ | "status"
878
+ | "switch"
879
+ | "tab"
880
+ | "table"
881
+ | "tablist"
882
+ | "tabpanel"
883
+ | "term"
884
+ | "textbox"
885
+ | "timer"
886
+ | "toolbar"
887
+ | "tooltip"
888
+ | "tree"
889
+ | "treegrid"
890
+ | "treeitem"
891
+ | undefined
892
+ >;
893
+ }
894
+
895
+ // TODO: Should we allow this?
896
+ // type ClassKeys = `class:${string}`;
897
+ // type CSSKeys = Exclude<keyof csstype.PropertiesHyphen, `-${string}`>;
898
+
899
+ // type CSSAttributes = {
900
+ // [key in CSSKeys as `style:${key}`]: csstype.PropertiesHyphen[key];
901
+ // };
902
+
903
+ interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
904
+ // [key: ClassKeys]: boolean;
905
+ about?: FunctionMaybe<string | undefined>;
906
+ accesskey?: FunctionMaybe<string | undefined>;
907
+ autocapitalize?: FunctionMaybe<HTMLAutocapitalize | undefined>;
908
+ class?: FunctionMaybe<string | ClassList | undefined>;
909
+ color?: FunctionMaybe<string | undefined>;
910
+ contenteditable?: FunctionMaybe<
911
+ "true" | "false" | boolean | "plaintext-only" | "inherit" | undefined
912
+ >;
913
+ contextmenu?: FunctionMaybe<string | undefined>;
914
+ datatype?: FunctionMaybe<string | undefined>;
915
+ dir?: FunctionMaybe<HTMLDir | undefined>;
916
+ draggable?: FunctionMaybe<boolean | "false" | "true" | undefined>;
917
+ exportparts?: FunctionMaybe<string | undefined>;
918
+ hidden?: FunctionMaybe<boolean | "hidden" | "until-found" | undefined>;
919
+ id?: FunctionMaybe<string | undefined>;
920
+ inert?: FunctionMaybe<"true" | boolean | undefined>;
921
+ inlist?: FunctionMaybe<any | undefined>;
922
+ inputmode?: FunctionMaybe<
923
+ "decimal" | "email" | "none" | "numeric" | "search" | "tel" | "text" | "url" | undefined
924
+ >;
925
+ is?: FunctionMaybe<string | undefined>;
926
+ itemid?: FunctionMaybe<string | undefined>;
927
+ itemprop?: FunctionMaybe<string | undefined>;
928
+ itemref?: FunctionMaybe<string | undefined>;
929
+ itemscope?: FunctionMaybe<"true" | boolean | undefined>;
930
+ itemtype?: FunctionMaybe<string | undefined>;
931
+ lang?: FunctionMaybe<string | undefined>;
932
+ part?: FunctionMaybe<string | undefined>;
933
+ popover?: FunctionMaybe<boolean | "manual" | "auto" | undefined>;
934
+ prefix?: FunctionMaybe<string | undefined>;
935
+ property?: FunctionMaybe<string | undefined>;
936
+ resource?: FunctionMaybe<string | undefined>;
937
+ slot?: FunctionMaybe<string | undefined>;
938
+ spellcheck?: FunctionMaybe<"true" | boolean | undefined>;
939
+ style?: FunctionMaybe<CSSProperties | string | undefined>;
940
+ tabindex?: FunctionMaybe<number | string | undefined>;
941
+ title?: FunctionMaybe<string | undefined>;
942
+ translate?: FunctionMaybe<"yes" | "no" | undefined>;
943
+ typeof?: FunctionMaybe<string | undefined>;
944
+ vocab?: FunctionMaybe<string | undefined>;
945
+
946
+ /** @deprecated Use lowercase attributes */
947
+ accessKey?: FunctionMaybe<string | undefined>;
948
+ /** @deprecated Use lowercase attributes */
949
+ autoCapitalize?: FunctionMaybe<HTMLAutocapitalize | undefined>;
950
+ /** @deprecated Use lowercase attributes */
951
+ contentEditable?: FunctionMaybe<boolean | "plaintext-only" | "inherit" | undefined>;
952
+ /** @deprecated Use lowercase attributes */
953
+ contextMenu?: FunctionMaybe<string | undefined>;
954
+ /** @deprecated Use lowercase attributes */
955
+ exportParts?: FunctionMaybe<string | undefined>;
956
+ /** @deprecated Use lowercase attributes */
957
+ inputMode?: FunctionMaybe<
958
+ "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined
959
+ >;
960
+ /** @deprecated Use lowercase attributes */
961
+ itemId?: FunctionMaybe<string | undefined>;
962
+ /** @deprecated Use lowercase attributes */
963
+ itemProp?: FunctionMaybe<string | undefined>;
964
+ /** @deprecated Use lowercase attributes */
965
+ itemRef?: FunctionMaybe<string | undefined>;
966
+ /** @deprecated Use lowercase attributes */
967
+ itemScope?: FunctionMaybe<boolean | undefined>;
968
+ /** @deprecated Use lowercase attributes */
969
+ itemType?: FunctionMaybe<string | undefined>;
970
+ /** @deprecated Use lowercase attributes */
971
+ tabIndex?: FunctionMaybe<number | string | undefined>;
972
+ }
973
+ interface AnchorHTMLAttributes<T> extends HTMLAttributes<T> {
974
+ download?: FunctionMaybe<string | undefined>;
975
+ href?: FunctionMaybe<string | undefined>;
976
+ hreflang?: FunctionMaybe<string | undefined>;
977
+ ping?: FunctionMaybe<string | undefined>;
978
+ referrerpolicy?: FunctionMaybe<HTMLReferrerPolicy | undefined>;
979
+ rel?: FunctionMaybe<string | undefined>;
980
+ target?: FunctionMaybe<"_self" | "_blank" | "_parent" | "_top" | (string & {}) | undefined>;
981
+ type?: FunctionMaybe<string | undefined>;
982
+
983
+ /** @experimental */
984
+ attributionsrc?: FunctionMaybe<string | undefined>;
985
+
986
+ /** @deprecated Use lowercase attributes */
987
+ referrerPolicy?: FunctionMaybe<HTMLReferrerPolicy | undefined>;
988
+
989
+ /** @deprecated */
990
+ charset?: FunctionMaybe<string | undefined>;
991
+ /** @deprecated */
992
+ coords?: FunctionMaybe<string | undefined>;
993
+ /** @deprecated */
994
+ name?: FunctionMaybe<string | undefined>;
995
+ /** @deprecated */
996
+ rev?: FunctionMaybe<string | undefined>;
997
+ /** @deprecated */
998
+ shape?: FunctionMaybe<"rect" | "circle" | "poly" | "default" | undefined>;
999
+ }
1000
+ interface AudioHTMLAttributes<T> extends MediaHTMLAttributes<T> {}
1001
+ interface AreaHTMLAttributes<T> extends HTMLAttributes<T> {
1002
+ alt?: FunctionMaybe<string | undefined>;
1003
+ coords?: FunctionMaybe<string | undefined>;
1004
+ download?: FunctionMaybe<string | undefined>;
1005
+ href?: FunctionMaybe<string | undefined>;
1006
+ ping?: FunctionMaybe<string | undefined>;
1007
+ referrerpolicy?: FunctionMaybe<HTMLReferrerPolicy | undefined>;
1008
+ rel?: FunctionMaybe<string | undefined>;
1009
+ shape?: FunctionMaybe<"rect" | "circle" | "poly" | "default" | undefined>;
1010
+ target?: FunctionMaybe<"_self" | "_blank" | "_parent" | "_top" | (string & {}) | undefined>;
1011
+
1012
+ /** @deprecated Use lowercase attributes */
1013
+ referrerPolicy?: FunctionMaybe<HTMLReferrerPolicy | undefined>;
1014
+
1015
+ /** @deprecated */
1016
+ nohref?: FunctionMaybe<"true" | boolean | undefined>;
1017
+ }
1018
+ interface BaseHTMLAttributes<T> extends HTMLAttributes<T> {
1019
+ href?: FunctionMaybe<string | undefined>;
1020
+ target?: FunctionMaybe<"_self" | "_blank" | "_parent" | "_top" | (string & {}) | undefined>;
1021
+ }
1022
+ interface BlockquoteHTMLAttributes<T> extends HTMLAttributes<T> {
1023
+ cite?: FunctionMaybe<string | undefined>;
1024
+ }
1025
+ interface ButtonHTMLAttributes<T> extends HTMLAttributes<T> {
1026
+ autofocus?: FunctionMaybe<"true" | boolean | undefined>;
1027
+ disabled?: FunctionMaybe<"true" | boolean | undefined>;
1028
+ form?: FunctionMaybe<string | undefined>;
1029
+ formaction?: FunctionMaybe<string | SerializableAttributeValue | undefined>;
1030
+ formenctype?: FunctionMaybe<HTMLFormEncType | undefined>;
1031
+ formmethod?: FunctionMaybe<HTMLFormMethod | undefined>;
1032
+ formnovalidate?: FunctionMaybe<"true" | boolean | undefined>;
1033
+ formtarget?: FunctionMaybe<"_self" | "_blank" | "_parent" | "_top" | (string & {}) | undefined>;
1034
+ popovertarget?: FunctionMaybe<string | undefined>;
1035
+ popovertargetaction?: FunctionMaybe<"hide" | "show" | "toggle" | undefined>;
1036
+ name?: FunctionMaybe<string | undefined>;
1037
+ type?: FunctionMaybe<"submit" | "reset" | "button" | "menu" | undefined>;
1038
+ value?: FunctionMaybe<string | undefined>;
1039
+
1040
+ /** @experimental */
1041
+ command?: FunctionMaybe<
1042
+ | "show-modal"
1043
+ | "close"
1044
+ | "show-popover"
1045
+ | "hide-popover"
1046
+ | "toggle-popover"
1047
+ | (string & {})
1048
+ | undefined
1049
+ >;
1050
+ /** @experimental */
1051
+ commandfor?: FunctionMaybe<string | undefined>;
1052
+
1053
+ /** @deprecated Use lowercase attributes */
1054
+ formAction?: FunctionMaybe<string | SerializableAttributeValue | undefined>;
1055
+ /** @deprecated Use lowercase attributes */
1056
+ formEnctype?: FunctionMaybe<HTMLFormEncType | undefined>;
1057
+ /** @deprecated Use lowercase attributes */
1058
+ formMethod?: FunctionMaybe<HTMLFormMethod | undefined>;
1059
+ /** @deprecated Use lowercase attributes */
1060
+ formNoValidate?: FunctionMaybe<boolean | undefined>;
1061
+ /** @deprecated Use lowercase attributes */
1062
+ formTarget?: FunctionMaybe<string | undefined>;
1063
+ /** @deprecated Use lowercase attributes */
1064
+ popoverTarget?: FunctionMaybe<string | undefined>;
1065
+ /** @deprecated Use lowercase attributes */
1066
+ popoverTargetAction?: FunctionMaybe<"hide" | "show" | "toggle" | undefined>;
1067
+ }
1068
+ interface CanvasHTMLAttributes<T> extends HTMLAttributes<T> {
1069
+ width?: FunctionMaybe<number | string | undefined>;
1070
+ height?: FunctionMaybe<number | string | undefined>;
1071
+
1072
+ /**
1073
+ * @deprecated
1074
+ * @non-standard
1075
+ */
1076
+ "moz-opaque"?: FunctionMaybe<"true" | boolean | undefined>;
1077
+ }
1078
+ interface ColHTMLAttributes<T> extends HTMLAttributes<T> {
1079
+ span?: FunctionMaybe<number | string | undefined>;
1080
+
1081
+ /** @deprecated */
1082
+ align?: FunctionMaybe<"left" | "center" | "right" | "justify" | "char" | undefined>;
1083
+ /** @deprecated */
1084
+ bgcolor?: FunctionMaybe<string | undefined>;
1085
+ /** @deprecated */
1086
+ char?: FunctionMaybe<string | undefined>;
1087
+ /** @deprecated */
1088
+ charoff?: FunctionMaybe<string | undefined>;
1089
+ /** @deprecated */
1090
+ valign?: FunctionMaybe<"baseline" | "bottom" | "middle" | "top" | undefined>;
1091
+ /** @deprecated */
1092
+ width?: FunctionMaybe<number | string | undefined>;
1093
+ }
1094
+ interface ColgroupHTMLAttributes<T> extends HTMLAttributes<T> {
1095
+ span?: FunctionMaybe<number | string | undefined>;
1096
+
1097
+ /** @deprecated */
1098
+ align?: FunctionMaybe<"left" | "center" | "right" | "justify" | "char" | undefined>;
1099
+ /** @deprecated */
1100
+ bgcolor?: FunctionMaybe<string | undefined>;
1101
+ /** @deprecated */
1102
+ char?: FunctionMaybe<string | undefined>;
1103
+ /** @deprecated */
1104
+ charoff?: FunctionMaybe<string | undefined>;
1105
+ /** @deprecated */
1106
+ valign?: FunctionMaybe<"baseline" | "bottom" | "middle" | "top" | undefined>;
1107
+ /** @deprecated */
1108
+ width?: FunctionMaybe<number | string | undefined>;
1109
+ }
1110
+ interface DataHTMLAttributes<T> extends HTMLAttributes<T> {
1111
+ value?: FunctionMaybe<string | string[] | number | undefined>;
1112
+ }
1113
+ interface DetailsHtmlAttributes<T> extends HTMLAttributes<T> {
1114
+ name?: FunctionMaybe<string | undefined>;
1115
+ open?: FunctionMaybe<"true" | boolean | undefined>;
1116
+ }
1117
+ interface DialogHtmlAttributes<T> extends HTMLAttributes<T> {
1118
+ open?: FunctionMaybe<"true" | boolean | undefined>;
1119
+ tabindex?: FunctionMaybe<never | undefined>;
1120
+
1121
+ onclose?: EventHandlerUnion<T, Event> | undefined;
1122
+ onClose?: EventHandlerUnion<T, Event> | undefined;
1123
+ oncancel?: EventHandlerUnion<T, Event> | undefined;
1124
+ onCancel?: EventHandlerUnion<T, Event> | undefined;
1125
+ }
1126
+ interface EmbedHTMLAttributes<T> extends HTMLAttributes<T> {
1127
+ height?: FunctionMaybe<number | string | undefined>;
1128
+ src?: FunctionMaybe<string | undefined>;
1129
+ type?: FunctionMaybe<string | undefined>;
1130
+ width?: FunctionMaybe<number | string | undefined>;
1131
+
1132
+ /** @deprecated */
1133
+ align?: FunctionMaybe<"left" | "right" | "justify" | "center" | undefined>;
1134
+ /** @deprecated */
1135
+ name?: FunctionMaybe<string | undefined>;
1136
+ }
1137
+ interface FieldsetHTMLAttributes<T> extends HTMLAttributes<T> {
1138
+ disabled?: FunctionMaybe<"true" | boolean | undefined>;
1139
+ form?: FunctionMaybe<string | undefined>;
1140
+ name?: FunctionMaybe<string | undefined>;
1141
+ }
1142
+ interface FormHTMLAttributes<T> extends HTMLAttributes<T> {
1143
+ "accept-charset"?: FunctionMaybe<string | undefined>;
1144
+ action?: FunctionMaybe<string | SerializableAttributeValue | undefined>;
1145
+ autocomplete?: FunctionMaybe<"on" | "off" | undefined>;
1146
+ encoding?: FunctionMaybe<HTMLFormEncType | undefined>;
1147
+ enctype?: FunctionMaybe<HTMLFormEncType | undefined>;
1148
+ method?: FunctionMaybe<HTMLFormMethod | undefined>;
1149
+ name?: FunctionMaybe<string | undefined>;
1150
+ novalidate?: FunctionMaybe<"true" | boolean | undefined>;
1151
+ rel?: FunctionMaybe<string | undefined>;
1152
+ target?: FunctionMaybe<"_self" | "_blank" | "_parent" | "_top" | (string & {}) | undefined>;
1153
+
1154
+ /** @deprecated Use lowercase attributes */
1155
+ noValidate?: FunctionMaybe<boolean | undefined>;
1156
+
1157
+ /** @deprecated */
1158
+ accept?: FunctionMaybe<string | undefined>;
1159
+ }
1160
+ interface IframeHTMLAttributes<T> extends HTMLAttributes<T> {
1161
+ allow?: FunctionMaybe<string | undefined>;
1162
+ allowfullscreen?: FunctionMaybe<"true" | boolean | undefined>;
1163
+ height?: FunctionMaybe<number | string | undefined>;
1164
+ loading?: FunctionMaybe<"eager" | "lazy" | undefined>;
1165
+ name?: FunctionMaybe<string | undefined>;
1166
+ referrerpolicy?: FunctionMaybe<HTMLReferrerPolicy | undefined>;
1167
+ sandbox?: FunctionMaybe<HTMLIframeSandbox | string | undefined>;
1168
+ src?: FunctionMaybe<string | undefined>;
1169
+ srcdoc?: FunctionMaybe<string | undefined>;
1170
+ width?: FunctionMaybe<number | string | undefined>;
1171
+
1172
+ /** @deprecated Use lowercase attributes */
1173
+ referrerPolicy?: FunctionMaybe<HTMLReferrerPolicy | undefined>;
1174
+
1175
+ /** @experimental */
1176
+ adauctionheaders?: FunctionMaybe<"true" | boolean | undefined>;
1177
+ /**
1178
+ * @non-standard
1179
+ * @experimental
1180
+ */
1181
+ browsingtopics?: FunctionMaybe<"true" | boolean | undefined>;
1182
+ /** @experimental */
1183
+ credentialless?: FunctionMaybe<"true" | boolean | undefined>;
1184
+ /** @experimental */
1185
+ csp?: FunctionMaybe<string | undefined>;
1186
+ /** @experimental */
1187
+ privatetoken?: FunctionMaybe<string | undefined>;
1188
+ /** @experimental */
1189
+ sharedstoragewritable?: FunctionMaybe<"true" | boolean | undefined>;
1190
+
1191
+ /** @deprecated */
1192
+ align?: FunctionMaybe<string | undefined>;
1193
+ /**
1194
+ * @deprecated
1195
+ * @non-standard
1196
+ */
1197
+ allowpaymentrequest?: FunctionMaybe<"true" | boolean | undefined>;
1198
+ /** @deprecated */
1199
+ allowtransparency?: FunctionMaybe<"true" | boolean | undefined>;
1200
+ /** @deprecated */
1201
+ frameborder?: FunctionMaybe<number | string | undefined>;
1202
+ /** @deprecated */
1203
+ longdesc?: FunctionMaybe<string | undefined>;
1204
+ /** @deprecated */
1205
+ marginheight?: FunctionMaybe<number | string | undefined>;
1206
+ /** @deprecated */
1207
+ marginwidth?: FunctionMaybe<number | string | undefined>;
1208
+ /** @deprecated */
1209
+ scrolling?: FunctionMaybe<"yes" | "no" | "auto" | undefined>;
1210
+ /** @deprecated */
1211
+ seamless?: FunctionMaybe<"true" | boolean | undefined>;
1212
+ }
1213
+ interface ImgHTMLAttributes<T> extends HTMLAttributes<T> {
1214
+ alt?: FunctionMaybe<string | undefined>;
1215
+ crossorigin?: FunctionMaybe<HTMLCrossorigin | undefined>;
1216
+ decoding?: FunctionMaybe<"sync" | "async" | "auto" | undefined>;
1217
+ height?: FunctionMaybe<number | string | undefined>;
1218
+ ismap?: FunctionMaybe<"true" | boolean | undefined>;
1219
+ loading?: FunctionMaybe<"eager" | "lazy" | undefined>;
1220
+ referrerpolicy?: FunctionMaybe<HTMLReferrerPolicy | undefined>;
1221
+ sizes?: FunctionMaybe<string | undefined>;
1222
+ src?: FunctionMaybe<string | undefined>;
1223
+ srcset?: FunctionMaybe<string | undefined>;
1224
+ usemap?: FunctionMaybe<string | undefined>;
1225
+ width?: FunctionMaybe<number | string | undefined>;
1226
+ elementtiming?: FunctionMaybe<string | undefined>;
1227
+ fetchpriority?: FunctionMaybe<"high" | "low" | "auto" | undefined>;
1228
+
1229
+ /** @experimental */
1230
+ attributionsrc?: FunctionMaybe<string | undefined>;
1231
+ /** @experimental */
1232
+ sharedstoragewritable?: FunctionMaybe<"true" | boolean | undefined>;
1233
+
1234
+ /** @deprecated Use lowercase attributes */
1235
+ crossOrigin?: FunctionMaybe<HTMLCrossorigin | undefined>;
1236
+ /** @deprecated Use lowercase attributes */
1237
+ isMap?: FunctionMaybe<boolean | undefined>;
1238
+ /** @deprecated Use lowercase attributes */
1239
+ referrerPolicy?: FunctionMaybe<HTMLReferrerPolicy | undefined>;
1240
+ /** @deprecated Use lowercase attributes */
1241
+ srcSet?: FunctionMaybe<string | undefined>;
1242
+ /** @deprecated Use lowercase attributes */
1243
+ useMap?: FunctionMaybe<string | undefined>;
1244
+
1245
+ /** @deprecated */
1246
+ align?: FunctionMaybe<"top" | "middle" | "bottom" | "left" | "right" | undefined>;
1247
+ /** @deprecated */
1248
+ border?: FunctionMaybe<string | undefined>;
1249
+ /** @deprecated */
1250
+ hspace?: FunctionMaybe<number | string | undefined>;
1251
+ /** @deprecated */
1252
+ intrinsicsize?: FunctionMaybe<string | undefined>;
1253
+ /** @deprecated */
1254
+ longdesc?: FunctionMaybe<string | undefined>;
1255
+ /** @deprecated */
1256
+ lowsrc?: FunctionMaybe<string | undefined>;
1257
+ /** @deprecated */
1258
+ name?: FunctionMaybe<string | undefined>;
1259
+ /** @deprecated */
1260
+ vspace?: FunctionMaybe<number | string | undefined>;
1261
+ }
1262
+ interface InputHTMLAttributes<T> extends HTMLAttributes<T> {
1263
+ accept?: FunctionMaybe<string | undefined>;
1264
+ alt?: FunctionMaybe<string | undefined>;
1265
+ autocomplete?: FunctionMaybe<
1266
+ | "additional-name"
1267
+ | "address-level1"
1268
+ | "address-level2"
1269
+ | "address-level3"
1270
+ | "address-level4"
1271
+ | "address-line1"
1272
+ | "address-line2"
1273
+ | "address-line3"
1274
+ | "bday"
1275
+ | "bday-day"
1276
+ | "bday-month"
1277
+ | "bday-year"
1278
+ | "billing"
1279
+ | "cc-additional-name"
1280
+ | "cc-csc"
1281
+ | "cc-exp"
1282
+ | "cc-exp-month"
1283
+ | "cc-exp-year"
1284
+ | "cc-family-name"
1285
+ | "cc-given-name"
1286
+ | "cc-name"
1287
+ | "cc-number"
1288
+ | "cc-type"
1289
+ | "country"
1290
+ | "country-name"
1291
+ | "current-password"
1292
+ | "email"
1293
+ | "family-name"
1294
+ | "fax"
1295
+ | "given-name"
1296
+ | "home"
1297
+ | "honorific-prefix"
1298
+ | "honorific-suffix"
1299
+ | "impp"
1300
+ | "language"
1301
+ | "mobile"
1302
+ | "name"
1303
+ | "new-password"
1304
+ | "nickname"
1305
+ | "off"
1306
+ | "on"
1307
+ | "organization"
1308
+ | "organization-title"
1309
+ | "pager"
1310
+ | "photo"
1311
+ | "postal-code"
1312
+ | "sex"
1313
+ | "shipping"
1314
+ | "street-address"
1315
+ | "tel"
1316
+ | "tel-area-code"
1317
+ | "tel-country-code"
1318
+ | "tel-extension"
1319
+ | "tel-local"
1320
+ | "tel-local-prefix"
1321
+ | "tel-local-suffix"
1322
+ | "tel-national"
1323
+ | "transaction-amount"
1324
+ | "transaction-currency"
1325
+ | "url"
1326
+ | "username"
1327
+ | "work"
1328
+ | (string & {})
1329
+ | undefined
1330
+ >;
1331
+ autocorrect?: FunctionMaybe<"on" | "off" | undefined>;
1332
+ autofocus?: FunctionMaybe<"true" | boolean | undefined>;
1333
+ capture?: FunctionMaybe<"user" | "environment" | undefined>;
1334
+ checked?: FunctionMaybe<"true" | boolean | undefined>;
1335
+ crossorigin?: FunctionMaybe<HTMLCrossorigin | undefined>;
1336
+ dirname?: FunctionMaybe<string | undefined>;
1337
+ disabled?: FunctionMaybe<"true" | boolean | undefined>;
1338
+ enterkeyhint?: FunctionMaybe<
1339
+ "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined
1340
+ >;
1341
+ form?: FunctionMaybe<string | undefined>;
1342
+ formaction?: FunctionMaybe<string | SerializableAttributeValue | undefined>;
1343
+ formenctype?: FunctionMaybe<HTMLFormEncType | undefined>;
1344
+ formmethod?: FunctionMaybe<HTMLFormMethod | undefined>;
1345
+ formnovalidate?: FunctionMaybe<"true" | boolean | undefined>;
1346
+ formtarget?: FunctionMaybe<string | undefined>;
1347
+ height?: FunctionMaybe<number | string | undefined>;
1348
+ list?: FunctionMaybe<string | undefined>;
1349
+ max?: FunctionMaybe<number | string | undefined>;
1350
+ maxlength?: FunctionMaybe<number | string | undefined>;
1351
+ min?: FunctionMaybe<number | string | undefined>;
1352
+ minlength?: FunctionMaybe<number | string | undefined>;
1353
+ multiple?: FunctionMaybe<"true" | boolean | undefined>;
1354
+ name?: FunctionMaybe<string | undefined>;
1355
+ pattern?: FunctionMaybe<string | undefined>;
1356
+ placeholder?: FunctionMaybe<string | undefined>;
1357
+ popovertarget?: FunctionMaybe<string | undefined>;
1358
+ popovertargetaction?: FunctionMaybe<"hide" | "show" | "toggle" | undefined>;
1359
+ readonly?: FunctionMaybe<"true" | boolean | undefined>;
1360
+ required?: FunctionMaybe<"true" | boolean | undefined>;
1361
+ // https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/search#results
1362
+ results?: FunctionMaybe<number | undefined>;
1363
+ size?: FunctionMaybe<number | string | undefined>;
1364
+ src?: FunctionMaybe<string | undefined>;
1365
+ step?: FunctionMaybe<number | string | undefined>;
1366
+ type?: FunctionMaybe<
1367
+ | "button"
1368
+ | "checkbox"
1369
+ | "color"
1370
+ | "date"
1371
+ | "datetime-local"
1372
+ | "email"
1373
+ | "file"
1374
+ | "hidden"
1375
+ | "image"
1376
+ | "month"
1377
+ | "number"
1378
+ | "password"
1379
+ | "radio"
1380
+ | "range"
1381
+ | "reset"
1382
+ | "search"
1383
+ | "submit"
1384
+ | "tel"
1385
+ | "text"
1386
+ | "time"
1387
+ | "url"
1388
+ | "week"
1389
+ | undefined
1390
+ >;
1391
+ value?: FunctionMaybe<string | string[] | number | undefined>;
1392
+ width?: FunctionMaybe<number | string | undefined>;
1393
+
1394
+ /** @non-standard */
1395
+ incremental?: FunctionMaybe<"true" | boolean | undefined>;
1396
+
1397
+ /** @deprecated Use lowercase attributes */
1398
+ crossOrigin?: FunctionMaybe<HTMLCrossorigin | undefined>;
1399
+ /** @deprecated Use lowercase attributes */
1400
+ formAction?: FunctionMaybe<string | SerializableAttributeValue | undefined>;
1401
+ /** @deprecated Use lowercase attributes */
1402
+ formEnctype?: FunctionMaybe<HTMLFormEncType | undefined>;
1403
+ /** @deprecated Use lowercase attributes */
1404
+ formMethod?: FunctionMaybe<HTMLFormMethod | undefined>;
1405
+ /** @deprecated Use lowercase attributes */
1406
+ formNoValidate?: FunctionMaybe<boolean | undefined>;
1407
+ /** @deprecated Use lowercase attributes */
1408
+ formTarget?: FunctionMaybe<string | undefined>;
1409
+ /** @deprecated Use lowercase attributes */
1410
+ maxLength?: FunctionMaybe<number | string | undefined>;
1411
+ /** @deprecated Use lowercase attributes */
1412
+ minLength?: FunctionMaybe<number | string | undefined>;
1413
+ /** @deprecated Use lowercase attributes */
1414
+ readOnly?: FunctionMaybe<boolean | undefined>;
1415
+
1416
+ /** @deprecated */
1417
+ align?: FunctionMaybe<string | undefined>;
1418
+ /** @deprecated */
1419
+ usemap?: FunctionMaybe<string | undefined>;
1420
+ }
1421
+ interface ModHTMLAttributes<T> extends HTMLAttributes<T> {
1422
+ cite?: FunctionMaybe<string | undefined>;
1423
+ datetime?: FunctionMaybe<string | undefined>;
1424
+
1425
+ /** @deprecated Use lowercase attributes */
1426
+ dateTime?: FunctionMaybe<string | undefined>;
1427
+ }
1428
+ interface KeygenHTMLAttributes<T> extends HTMLAttributes<T> {
1429
+ /** @deprecated */
1430
+ autofocus?: FunctionMaybe<"true" | boolean | undefined>;
1431
+ /** @deprecated */
1432
+ challenge?: FunctionMaybe<string | undefined>;
1433
+ /** @deprecated */
1434
+ disabled?: FunctionMaybe<"true" | boolean | undefined>;
1435
+ /** @deprecated */
1436
+ form?: FunctionMaybe<string | undefined>;
1437
+ /** @deprecated */
1438
+ keyparams?: FunctionMaybe<string | undefined>;
1439
+ /** @deprecated */
1440
+ keytype?: FunctionMaybe<string | undefined>;
1441
+ /** @deprecated */
1442
+ name?: FunctionMaybe<string | undefined>;
1443
+ }
1444
+ interface LabelHTMLAttributes<T> extends HTMLAttributes<T> {
1445
+ for?: FunctionMaybe<string | undefined>;
1446
+ form?: FunctionMaybe<string | undefined>;
1447
+ }
1448
+ interface LiHTMLAttributes<T> extends HTMLAttributes<T> {
1449
+ value?: FunctionMaybe<number | string | undefined>;
1450
+
1451
+ /** @deprecated */
1452
+ type?: FunctionMaybe<"1" | "a" | "A" | "i" | "I" | undefined>;
1453
+ }
1454
+ interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
1455
+ as?: FunctionMaybe<HTMLLinkAs | undefined>;
1456
+ blocking?: FunctionMaybe<"render" | undefined>;
1457
+ crossorigin?: FunctionMaybe<HTMLCrossorigin | undefined>;
1458
+ disabled?: FunctionMaybe<"true" | boolean | undefined>;
1459
+ fetchpriority?: FunctionMaybe<"high" | "low" | "auto" | undefined>;
1460
+ href?: FunctionMaybe<string | undefined>;
1461
+ hreflang?: FunctionMaybe<string | undefined>;
1462
+ imagesizes?: FunctionMaybe<string | undefined>;
1463
+ imagesrcset?: FunctionMaybe<string | undefined>;
1464
+ integrity?: FunctionMaybe<string | undefined>;
1465
+ media?: FunctionMaybe<string | undefined>;
1466
+ referrerpolicy?: FunctionMaybe<HTMLReferrerPolicy | undefined>;
1467
+ rel?: FunctionMaybe<string | undefined>;
1468
+ sizes?: FunctionMaybe<string | undefined>;
1469
+ type?: FunctionMaybe<string | undefined>;
1470
+
1471
+ /** @deprecated Use lowercase attributes */
1472
+ crossOrigin?: FunctionMaybe<HTMLCrossorigin | undefined>;
1473
+ /** @deprecated Use lowercase attributes */
1474
+ referrerPolicy?: FunctionMaybe<HTMLReferrerPolicy | undefined>;
1475
+
1476
+ /** @deprecated */
1477
+ charset?: FunctionMaybe<string | undefined>;
1478
+ /** @deprecated */
1479
+ rev?: FunctionMaybe<string | undefined>;
1480
+ /** @deprecated */
1481
+ target?: FunctionMaybe<string | undefined>;
1482
+ }
1483
+ interface MapHTMLAttributes<T> extends HTMLAttributes<T> {
1484
+ name?: FunctionMaybe<string | undefined>;
1485
+ }
1486
+ interface MediaHTMLAttributes<T> extends HTMLAttributes<T> {
1487
+ autoplay?: FunctionMaybe<"true" | boolean | undefined>;
1488
+ controls?: FunctionMaybe<"true" | boolean | undefined>;
1489
+ controlslist?: FunctionMaybe<string | undefined>;
1490
+ crossorigin?: FunctionMaybe<HTMLCrossorigin | undefined>;
1491
+ disableremoteplayback?: FunctionMaybe<"true" | boolean | undefined>;
1492
+ loop?: FunctionMaybe<"true" | boolean | undefined>;
1493
+ muted?: FunctionMaybe<"true" | boolean | undefined>;
1494
+ preload?: FunctionMaybe<"none" | "metadata" | "auto" | "" | undefined>;
1495
+ src?: FunctionMaybe<string | undefined>;
1496
+
1497
+ /** @deprecated Use lowercase attributes */
1498
+ crossOrigin?: FunctionMaybe<HTMLCrossorigin | undefined>;
1499
+
1500
+ /** @deprecated Use lowercase attributes */
1501
+ mediaGroup?: FunctionMaybe<string | undefined>;
1502
+ /** @deprecated */
1503
+ mediagroup?: FunctionMaybe<string | undefined>;
1504
+ }
1505
+ interface MenuHTMLAttributes<T> extends HTMLAttributes<T> {
1506
+ /** @deprecated */
1507
+ compact?: FunctionMaybe<"true" | boolean | undefined>;
1508
+ /** @deprecated */
1509
+ label?: FunctionMaybe<string | undefined>;
1510
+ /** @deprecated */
1511
+ type?: FunctionMaybe<"context" | "toolbar" | undefined>;
1512
+ }
1513
+ interface MetaHTMLAttributes<T> extends HTMLAttributes<T> {
1514
+ charset?: FunctionMaybe<string | undefined>;
1515
+ content?: FunctionMaybe<string | undefined>;
1516
+ "http-equiv"?: FunctionMaybe<
1517
+ | "content-security-policy"
1518
+ | "content-type"
1519
+ | "default-style"
1520
+ | "x-ua-compatible"
1521
+ | "refresh"
1522
+ | undefined
1523
+ >;
1524
+ name?: FunctionMaybe<string | undefined>;
1525
+ media?: FunctionMaybe<string | undefined>;
1526
+
1527
+ /** @deprecated */
1528
+ scheme?: FunctionMaybe<string | undefined>;
1529
+ }
1530
+ interface MeterHTMLAttributes<T> extends HTMLAttributes<T> {
1531
+ form?: FunctionMaybe<string | undefined>;
1532
+ high?: FunctionMaybe<number | string | undefined>;
1533
+ low?: FunctionMaybe<number | string | undefined>;
1534
+ max?: FunctionMaybe<number | string | undefined>;
1535
+ min?: FunctionMaybe<number | string | undefined>;
1536
+ optimum?: FunctionMaybe<number | string | undefined>;
1537
+ value?: FunctionMaybe<string | string[] | number | undefined>;
1538
+ }
1539
+ interface QuoteHTMLAttributes<T> extends HTMLAttributes<T> {
1540
+ cite?: FunctionMaybe<string | undefined>;
1541
+ }
1542
+ interface ObjectHTMLAttributes<T> extends HTMLAttributes<T> {
1543
+ data?: FunctionMaybe<string | undefined>;
1544
+ form?: FunctionMaybe<string | undefined>;
1545
+ height?: FunctionMaybe<number | string | undefined>;
1546
+ name?: FunctionMaybe<string | undefined>;
1547
+ type?: FunctionMaybe<string | undefined>;
1548
+ width?: FunctionMaybe<number | string | undefined>;
1549
+
1550
+ /** @deprecated Use lowercase attributes */
1551
+ useMap?: FunctionMaybe<string | undefined>;
1552
+
1553
+ /** @deprecated */
1554
+ align?: FunctionMaybe<string | undefined>;
1555
+ /** @deprecated */
1556
+ archive?: FunctionMaybe<string | undefined>;
1557
+ /** @deprecated */
1558
+ border?: FunctionMaybe<string | undefined>;
1559
+ /** @deprecated */
1560
+ classid?: FunctionMaybe<string | undefined>;
1561
+ /** @deprecated */
1562
+ code?: FunctionMaybe<string | undefined>;
1563
+ /** @deprecated */
1564
+ codebase?: FunctionMaybe<string | undefined>;
1565
+ /** @deprecated */
1566
+ codetype?: FunctionMaybe<string | undefined>;
1567
+ /** @deprecated */
1568
+ declare?: FunctionMaybe<"true" | boolean | undefined>;
1569
+ /** @deprecated */
1570
+ hspace?: FunctionMaybe<number | string | undefined>;
1571
+ /** @deprecated */
1572
+ standby?: FunctionMaybe<string | undefined>;
1573
+ /** @deprecated */
1574
+ usemap?: FunctionMaybe<string | undefined>;
1575
+ /** @deprecated */
1576
+ vspace?: FunctionMaybe<number | string | undefined>;
1577
+ /** @deprecated */
1578
+ typemustmatch?: FunctionMaybe<"true" | boolean | undefined>;
1579
+ }
1580
+ interface OlHTMLAttributes<T> extends HTMLAttributes<T> {
1581
+ reversed?: FunctionMaybe<"true" | boolean | undefined>;
1582
+ start?: FunctionMaybe<number | string | undefined>;
1583
+ type?: FunctionMaybe<"1" | "a" | "A" | "i" | "I" | undefined>;
1584
+
1585
+ /**
1586
+ * @deprecated
1587
+ * @non-standard
1588
+ */
1589
+ compact?: FunctionMaybe<"true" | boolean | undefined>;
1590
+ }
1591
+ interface OptgroupHTMLAttributes<T> extends HTMLAttributes<T> {
1592
+ disabled?: FunctionMaybe<"true" | boolean | undefined>;
1593
+ label?: FunctionMaybe<string | undefined>;
1594
+ }
1595
+ interface OptionHTMLAttributes<T> extends HTMLAttributes<T> {
1596
+ disabled?: FunctionMaybe<"true" | boolean | undefined>;
1597
+ label?: FunctionMaybe<string | undefined>;
1598
+ selected?: FunctionMaybe<"true" | boolean | undefined>;
1599
+ value?: FunctionMaybe<string | string[] | number | undefined>;
1600
+ }
1601
+ interface OutputHTMLAttributes<T> extends HTMLAttributes<T> {
1602
+ form?: FunctionMaybe<string | undefined>;
1603
+ for?: FunctionMaybe<string | undefined>;
1604
+ name?: FunctionMaybe<string | undefined>;
1605
+ }
1606
+ interface ParamHTMLAttributes<T> extends HTMLAttributes<T> {
1607
+ /** @deprecated */
1608
+ name?: FunctionMaybe<string | undefined>;
1609
+ /** @deprecated */
1610
+ type?: FunctionMaybe<string | undefined>;
1611
+ /** @deprecated */
1612
+ value?: FunctionMaybe<string | number | undefined>;
1613
+ /** @deprecated */
1614
+ valuetype?: FunctionMaybe<"data" | "ref" | "object" | undefined>;
1615
+ }
1616
+ interface ProgressHTMLAttributes<T> extends HTMLAttributes<T> {
1617
+ max?: FunctionMaybe<number | string | undefined>;
1618
+ value?: FunctionMaybe<string | string[] | number | undefined>;
1619
+ }
1620
+ interface ScriptHTMLAttributes<T> extends HTMLAttributes<T> {
1621
+ async?: FunctionMaybe<"true" | boolean | undefined>;
1622
+ blocking?: FunctionMaybe<"render" | undefined>;
1623
+ crossorigin?: FunctionMaybe<HTMLCrossorigin | undefined>;
1624
+ defer?: FunctionMaybe<"true" | boolean | undefined>;
1625
+ fetchpriority?: FunctionMaybe<"high" | "low" | "auto" | undefined>;
1626
+ integrity?: FunctionMaybe<string | undefined>;
1627
+ nomodule?: FunctionMaybe<"true" | boolean | undefined>;
1628
+ nonce?: FunctionMaybe<string | undefined>;
1629
+ referrerpolicy?: FunctionMaybe<HTMLReferrerPolicy | undefined>;
1630
+ src?: FunctionMaybe<string | undefined>;
1631
+ type?: FunctionMaybe<"importmap" | "module" | "speculationrules" | (string & {}) | undefined>;
1632
+
1633
+ /** @experimental */
1634
+ attributionsrc?: FunctionMaybe<string | undefined>;
1635
+
1636
+ /** @deprecated Use lowercase attributes */
1637
+ crossOrigin?: FunctionMaybe<HTMLCrossorigin | undefined>;
1638
+ /** @deprecated Use lowercase attributes */
1639
+ noModule?: FunctionMaybe<boolean | undefined>;
1640
+ /** @deprecated Use lowercase attributes */
1641
+ referrerPolicy?: FunctionMaybe<HTMLReferrerPolicy | undefined>;
1642
+
1643
+ /** @deprecated */
1644
+ charset?: FunctionMaybe<string | undefined>;
1645
+ /** @deprecated */
1646
+ event?: FunctionMaybe<string | undefined>;
1647
+ /** @deprecated */
1648
+ language?: FunctionMaybe<string | undefined>;
1649
+ }
1650
+ interface SelectHTMLAttributes<T> extends HTMLAttributes<T> {
1651
+ autocomplete?: FunctionMaybe<string | undefined>;
1652
+ autofocus?: FunctionMaybe<"true" | boolean | undefined>;
1653
+ disabled?: FunctionMaybe<"true" | boolean | undefined>;
1654
+ form?: FunctionMaybe<string | undefined>;
1655
+ multiple?: FunctionMaybe<"true" | boolean | undefined>;
1656
+ name?: FunctionMaybe<string | undefined>;
1657
+ required?: FunctionMaybe<"true" | boolean | undefined>;
1658
+ size?: FunctionMaybe<number | string | undefined>;
1659
+ value?: FunctionMaybe<string | string[] | number | undefined>;
1660
+ }
1661
+ interface HTMLSlotElementAttributes<T> extends HTMLAttributes<T> {
1662
+ name?: FunctionMaybe<string | undefined>;
1663
+ }
1664
+ interface SourceHTMLAttributes<T> extends HTMLAttributes<T> {
1665
+ media?: FunctionMaybe<string | undefined>;
1666
+ sizes?: FunctionMaybe<string | undefined>;
1667
+ src?: FunctionMaybe<string | undefined>;
1668
+ srcset?: FunctionMaybe<string | undefined>;
1669
+ type?: FunctionMaybe<string | undefined>;
1670
+ width?: FunctionMaybe<number | string | undefined>;
1671
+ height?: FunctionMaybe<number | string | undefined>;
1672
+ }
1673
+ interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
1674
+ blocking?: FunctionMaybe<"render" | undefined>;
1675
+ media?: FunctionMaybe<string | undefined>;
1676
+ nonce?: FunctionMaybe<string | undefined>;
1677
+
1678
+ /** @deprecated */
1679
+ scoped?: FunctionMaybe<"true" | boolean | undefined>;
1680
+ /** @deprecated */
1681
+ type?: FunctionMaybe<string | undefined>;
1682
+ }
1683
+ interface TdHTMLAttributes<T> extends HTMLAttributes<T> {
1684
+ colspan?: FunctionMaybe<number | string | undefined>;
1685
+ headers?: FunctionMaybe<string | undefined>;
1686
+ rowspan?: FunctionMaybe<number | string | undefined>;
1687
+
1688
+ /** @deprecated Use lowercase attributes */
1689
+ colSpan?: FunctionMaybe<number | string | undefined>;
1690
+ /** @deprecated Use lowercase attributes */
1691
+ rowSpan?: FunctionMaybe<number | string | undefined>;
1692
+
1693
+ /** @deprecated */
1694
+ abbr?: FunctionMaybe<string | undefined>;
1695
+ /** @deprecated */
1696
+ align?: FunctionMaybe<"left" | "center" | "right" | "justify" | "char" | undefined>;
1697
+ /** @deprecated */
1698
+ axis?: FunctionMaybe<string | undefined>;
1699
+ /** @deprecated */
1700
+ bgcolor?: FunctionMaybe<string | undefined>;
1701
+ /** @deprecated */
1702
+ char?: FunctionMaybe<string | undefined>;
1703
+ /** @deprecated */
1704
+ charoff?: FunctionMaybe<string | undefined>;
1705
+ /** @deprecated */
1706
+ height?: FunctionMaybe<number | string | undefined>;
1707
+ /** @deprecated */
1708
+ nowrap?: FunctionMaybe<"true" | boolean | undefined>;
1709
+ /** @deprecated */
1710
+ scope?: FunctionMaybe<"col" | "row" | "rowgroup" | "colgroup" | undefined>;
1711
+ /** @deprecated */
1712
+ valign?: FunctionMaybe<"baseline" | "bottom" | "middle" | "top" | undefined>;
1713
+ /** @deprecated */
1714
+ width?: FunctionMaybe<number | string | undefined>;
1715
+ }
1716
+ interface TemplateHTMLAttributes<T> extends HTMLAttributes<T> {
1717
+ shadowrootmode?: FunctionMaybe<"open" | "closed" | undefined>;
1718
+ shadowrootclonable?: FunctionMaybe<"true" | boolean | undefined>;
1719
+ shadowrootdelegatesfocus?: FunctionMaybe<"true" | boolean | undefined>;
1720
+
1721
+ /** @experimental */
1722
+ shadowrootserializable?: FunctionMaybe<"true" | boolean | undefined>;
1723
+
1724
+ /** @deprecated */
1725
+ content?: FunctionMaybe<DocumentFragment | undefined>;
1726
+ }
1727
+ interface TextareaHTMLAttributes<T> extends HTMLAttributes<T> {
1728
+ autocomplete?: FunctionMaybe<
1729
+ | "additional-name"
1730
+ | "address-level1"
1731
+ | "address-level2"
1732
+ | "address-level3"
1733
+ | "address-level4"
1734
+ | "address-line1"
1735
+ | "address-line2"
1736
+ | "address-line3"
1737
+ | "bday"
1738
+ | "bday-day"
1739
+ | "bday-month"
1740
+ | "bday-year"
1741
+ | "billing"
1742
+ | "cc-additional-name"
1743
+ | "cc-csc"
1744
+ | "cc-exp"
1745
+ | "cc-exp-month"
1746
+ | "cc-exp-year"
1747
+ | "cc-family-name"
1748
+ | "cc-given-name"
1749
+ | "cc-name"
1750
+ | "cc-number"
1751
+ | "cc-type"
1752
+ | "country"
1753
+ | "country-name"
1754
+ | "current-password"
1755
+ | "email"
1756
+ | "family-name"
1757
+ | "fax"
1758
+ | "given-name"
1759
+ | "home"
1760
+ | "honorific-prefix"
1761
+ | "honorific-suffix"
1762
+ | "impp"
1763
+ | "language"
1764
+ | "mobile"
1765
+ | "name"
1766
+ | "new-password"
1767
+ | "nickname"
1768
+ | "off"
1769
+ | "on"
1770
+ | "organization"
1771
+ | "organization-title"
1772
+ | "pager"
1773
+ | "photo"
1774
+ | "postal-code"
1775
+ | "sex"
1776
+ | "shipping"
1777
+ | "street-address"
1778
+ | "tel"
1779
+ | "tel-area-code"
1780
+ | "tel-country-code"
1781
+ | "tel-extension"
1782
+ | "tel-local"
1783
+ | "tel-local-prefix"
1784
+ | "tel-local-suffix"
1785
+ | "tel-national"
1786
+ | "transaction-amount"
1787
+ | "transaction-currency"
1788
+ | "url"
1789
+ | "username"
1790
+ | "work"
1791
+ | (string & {})
1792
+ | undefined
1793
+ >;
1794
+ autocorrect?: FunctionMaybe<"on" | "off" | undefined>;
1795
+ autofocus?: FunctionMaybe<"true" | boolean | undefined>;
1796
+ cols?: FunctionMaybe<number | string | undefined>;
1797
+ dirname?: FunctionMaybe<string | undefined>;
1798
+ disabled?: FunctionMaybe<"true" | boolean | undefined>;
1799
+ enterkeyhint?: FunctionMaybe<
1800
+ "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined
1801
+ >;
1802
+ form?: FunctionMaybe<string | undefined>;
1803
+ maxlength?: FunctionMaybe<number | string | undefined>;
1804
+ minlength?: FunctionMaybe<number | string | undefined>;
1805
+ name?: FunctionMaybe<string | undefined>;
1806
+ placeholder?: FunctionMaybe<string | undefined>;
1807
+ readonly?: FunctionMaybe<"true" | boolean | undefined>;
1808
+ required?: FunctionMaybe<"true" | boolean | undefined>;
1809
+ rows?: FunctionMaybe<number | string | undefined>;
1810
+ value?: FunctionMaybe<string | string[] | number | undefined>;
1811
+ wrap?: FunctionMaybe<"hard" | "soft" | "off" | undefined>;
1812
+
1813
+ /** @deprecated Use lowercase attributes */
1814
+ maxLength?: FunctionMaybe<number | string | undefined>;
1815
+ /** @deprecated Use lowercase attributes */
1816
+ minLength?: FunctionMaybe<number | string | undefined>;
1817
+ /** @deprecated Use lowercase attributes */
1818
+ readOnly?: FunctionMaybe<boolean | undefined>;
1819
+ }
1820
+ interface ThHTMLAttributes<T> extends HTMLAttributes<T> {
1821
+ abbr?: FunctionMaybe<string | undefined>;
1822
+ colspan?: FunctionMaybe<number | string | undefined>;
1823
+ headers?: FunctionMaybe<string | undefined>;
1824
+ rowspan?: FunctionMaybe<number | string | undefined>;
1825
+ scope?: FunctionMaybe<"col" | "row" | "rowgroup" | "colgroup" | undefined>;
1826
+
1827
+ /** @deprecated Use lowercase attributes */
1828
+ colSpan?: FunctionMaybe<number | string | undefined>;
1829
+ /** @deprecated Use lowercase attributes */
1830
+ rowSpan?: FunctionMaybe<number | string | undefined>;
1831
+
1832
+ /** @deprecated */
1833
+ align?: FunctionMaybe<"left" | "center" | "right" | "justify" | "char" | undefined>;
1834
+ /** @deprecated */
1835
+ axis?: FunctionMaybe<string | undefined>;
1836
+ /** @deprecated */
1837
+ bgcolor?: FunctionMaybe<string | undefined>;
1838
+ /** @deprecated */
1839
+ char?: FunctionMaybe<string | undefined>;
1840
+ /** @deprecated */
1841
+ charoff?: FunctionMaybe<string | undefined>;
1842
+ /** @deprecated */
1843
+ height?: FunctionMaybe<string | undefined>;
1844
+ /** @deprecated */
1845
+ nowrap?: FunctionMaybe<"true" | boolean | undefined>;
1846
+ /** @deprecated */
1847
+ valign?: FunctionMaybe<"baseline" | "bottom" | "middle" | "top" | undefined>;
1848
+ /** @deprecated */
1849
+ width?: FunctionMaybe<number | string | undefined>;
1850
+ }
1851
+ interface TimeHTMLAttributes<T> extends HTMLAttributes<T> {
1852
+ datetime?: FunctionMaybe<string | undefined>;
1853
+
1854
+ /** @deprecated Use lowercase attributes */
1855
+ dateTime?: FunctionMaybe<string | undefined>;
1856
+ }
1857
+ interface TrackHTMLAttributes<T> extends HTMLAttributes<T> {
1858
+ default?: FunctionMaybe<"true" | boolean | undefined>;
1859
+ kind?: // MDN
1860
+ FunctionMaybe<
1861
+ | "alternative"
1862
+ | "descriptions"
1863
+ | "main"
1864
+ | "main-desc"
1865
+ | "translation"
1866
+ | "commentary"
1867
+ // ??
1868
+ | "subtitles"
1869
+ | "captions"
1870
+ | "chapters"
1871
+ | "metadata"
1872
+ | undefined
1873
+ >;
1874
+ label?: FunctionMaybe<string | undefined>;
1875
+ src?: FunctionMaybe<string | undefined>;
1876
+ srclang?: FunctionMaybe<string | undefined>;
1877
+
1878
+ /** @deprecated Use lowercase attributes */
1879
+ mediaGroup?: FunctionMaybe<string | undefined>;
1880
+ /** @deprecated */
1881
+ mediagroup?: FunctionMaybe<string | undefined>;
1882
+ }
1883
+ interface VideoHTMLAttributes<T> extends MediaHTMLAttributes<T> {
1884
+ height?: FunctionMaybe<number | string | undefined>;
1885
+ playsinline?: FunctionMaybe<"true" | boolean | undefined>;
1886
+ poster?: FunctionMaybe<string | undefined>;
1887
+ width?: FunctionMaybe<number | string | undefined>;
1888
+ disablepictureinpicture?: FunctionMaybe<"true" | boolean | undefined>;
1889
+ disableremoteplayback?: FunctionMaybe<boolean>;
1890
+ }
1891
+
1892
+ interface WebViewHTMLAttributes<T> extends HTMLAttributes<T> {
1893
+ allowpopups?: FunctionMaybe<"true" | boolean | undefined>;
1894
+ disableblinkfeatures?: FunctionMaybe<string | undefined>;
1895
+ disablewebsecurity?: FunctionMaybe<"true" | boolean | undefined>;
1896
+ enableblinkfeatures?: FunctionMaybe<string | undefined>;
1897
+ httpreferrer?: FunctionMaybe<string | undefined>;
1898
+ nodeintegration?: FunctionMaybe<"true" | boolean | undefined>;
1899
+ nodeintegrationinsubframes?: FunctionMaybe<"true" | boolean | undefined>;
1900
+ partition?: FunctionMaybe<string | undefined>;
1901
+ plugins?: FunctionMaybe<"true" | boolean | undefined>;
1902
+ preload?: FunctionMaybe<string | undefined>;
1903
+ src?: FunctionMaybe<string | undefined>;
1904
+ useragent?: FunctionMaybe<string | undefined>;
1905
+ webpreferences?: FunctionMaybe<string | undefined>;
1906
+
1907
+ // does this exists?
1908
+ allowfullscreen?: FunctionMaybe<"true" | boolean | undefined>;
1909
+ autofocus?: FunctionMaybe<"true" | boolean | undefined>;
1910
+ autosize?: FunctionMaybe<"true" | boolean | undefined>;
1911
+
1912
+ /** @deprecated */
1913
+ blinkfeatures?: FunctionMaybe<string | undefined>;
1914
+ /** @deprecated */
1915
+ disableguestresize?: FunctionMaybe<"true" | boolean | undefined>;
1916
+ /** @deprecated */
1917
+ guestinstance?: FunctionMaybe<string | undefined>;
1918
+ }
1919
+
1920
+ type SVGPreserveAspectRatio =
1921
+ | "none"
1922
+ | "xMinYMin"
1923
+ | "xMidYMin"
1924
+ | "xMaxYMin"
1925
+ | "xMinYMid"
1926
+ | "xMidYMid"
1927
+ | "xMaxYMid"
1928
+ | "xMinYMax"
1929
+ | "xMidYMax"
1930
+ | "xMaxYMax"
1931
+ | "xMinYMin meet"
1932
+ | "xMidYMin meet"
1933
+ | "xMaxYMin meet"
1934
+ | "xMinYMid meet"
1935
+ | "xMidYMid meet"
1936
+ | "xMaxYMid meet"
1937
+ | "xMinYMax meet"
1938
+ | "xMidYMax meet"
1939
+ | "xMaxYMax meet"
1940
+ | "xMinYMin slice"
1941
+ | "xMidYMin slice"
1942
+ | "xMaxYMin slice"
1943
+ | "xMinYMid slice"
1944
+ | "xMidYMid slice"
1945
+ | "xMaxYMid slice"
1946
+ | "xMinYMax slice"
1947
+ | "xMidYMax slice"
1948
+ | "xMaxYMax slice";
1949
+ type ImagePreserveAspectRatio =
1950
+ | SVGPreserveAspectRatio
1951
+ | "defer none"
1952
+ | "defer xMinYMin"
1953
+ | "defer xMidYMin"
1954
+ | "defer xMaxYMin"
1955
+ | "defer xMinYMid"
1956
+ | "defer xMidYMid"
1957
+ | "defer xMaxYMid"
1958
+ | "defer xMinYMax"
1959
+ | "defer xMidYMax"
1960
+ | "defer xMaxYMax"
1961
+ | "defer xMinYMin meet"
1962
+ | "defer xMidYMin meet"
1963
+ | "defer xMaxYMin meet"
1964
+ | "defer xMinYMid meet"
1965
+ | "defer xMidYMid meet"
1966
+ | "defer xMaxYMid meet"
1967
+ | "defer xMinYMax meet"
1968
+ | "defer xMidYMax meet"
1969
+ | "defer xMaxYMax meet"
1970
+ | "defer xMinYMin slice"
1971
+ | "defer xMidYMin slice"
1972
+ | "defer xMaxYMin slice"
1973
+ | "defer xMinYMid slice"
1974
+ | "defer xMidYMid slice"
1975
+ | "defer xMaxYMid slice"
1976
+ | "defer xMinYMax slice"
1977
+ | "defer xMidYMax slice"
1978
+ | "defer xMaxYMax slice";
1979
+ type SVGUnits = "userSpaceOnUse" | "objectBoundingBox";
1980
+ interface CoreSVGAttributes<T> extends AriaAttributes, DOMAttributes<T> {
1981
+ id?: FunctionMaybe<string | undefined>;
1982
+ lang?: FunctionMaybe<string | undefined>;
1983
+ tabindex?: FunctionMaybe<number | string | undefined>;
1984
+
1985
+ /** @deprecated Use lowercase attributes */
1986
+ tabIndex?: FunctionMaybe<number | string | undefined>;
1987
+ }
1988
+ interface StylableSVGAttributes {
1989
+ class?: FunctionMaybe<string | ClassList | undefined>;
1990
+ style?: FunctionMaybe<CSSProperties | string | undefined>;
1991
+ }
1992
+ interface TransformableSVGAttributes {
1993
+ transform?: FunctionMaybe<string | undefined>;
1994
+ }
1995
+ interface ConditionalProcessingSVGAttributes {
1996
+ requiredExtensions?: FunctionMaybe<string | undefined>;
1997
+ requiredFeatures?: FunctionMaybe<string | undefined>;
1998
+ systemLanguage?: FunctionMaybe<string | undefined>;
1999
+ }
2000
+ interface ExternalResourceSVGAttributes {
2001
+ externalResourcesRequired?: FunctionMaybe<"true" | "false" | undefined>;
2002
+ }
2003
+ interface AnimationTimingSVGAttributes {
2004
+ begin?: FunctionMaybe<string | undefined>;
2005
+ dur?: FunctionMaybe<string | undefined>;
2006
+ end?: FunctionMaybe<string | undefined>;
2007
+ min?: FunctionMaybe<string | undefined>;
2008
+ max?: FunctionMaybe<string | undefined>;
2009
+ restart?: FunctionMaybe<"always" | "whenNotActive" | "never" | undefined>;
2010
+ repeatCount?: FunctionMaybe<number | "indefinite" | undefined>;
2011
+ repeatDur?: FunctionMaybe<string | undefined>;
2012
+ fill?: FunctionMaybe<"freeze" | "remove" | undefined>;
2013
+ }
2014
+ interface AnimationValueSVGAttributes {
2015
+ calcMode?: FunctionMaybe<"discrete" | "linear" | "paced" | "spline" | undefined>;
2016
+ values?: FunctionMaybe<string | undefined>;
2017
+ keyTimes?: FunctionMaybe<string | undefined>;
2018
+ keySplines?: FunctionMaybe<string | undefined>;
2019
+ from?: FunctionMaybe<number | string | undefined>;
2020
+ to?: FunctionMaybe<number | string | undefined>;
2021
+ by?: FunctionMaybe<number | string | undefined>;
2022
+ }
2023
+ interface AnimationAdditionSVGAttributes {
2024
+ attributeName?: FunctionMaybe<string | undefined>;
2025
+ additive?: FunctionMaybe<"replace" | "sum" | undefined>;
2026
+ accumulate?: FunctionMaybe<"none" | "sum" | undefined>;
2027
+ }
2028
+ interface AnimationAttributeTargetSVGAttributes {
2029
+ attributeName?: FunctionMaybe<string | undefined>;
2030
+ attributeType?: FunctionMaybe<"CSS" | "XML" | "auto" | undefined>;
2031
+ }
2032
+ interface PresentationSVGAttributes {
2033
+ "alignment-baseline"?:
2034
+ | "auto"
2035
+ | "baseline"
2036
+ | "before-edge"
2037
+ | "text-before-edge"
2038
+ | "middle"
2039
+ | "central"
2040
+ | "after-edge"
2041
+ | "text-after-edge"
2042
+ | "ideographic"
2043
+ | "alphabetic"
2044
+ | "hanging"
2045
+ | "mathematical"
2046
+ | "inherit"
2047
+ | undefined;
2048
+ "baseline-shift"?: FunctionMaybe<number | string | undefined>;
2049
+ clip?: FunctionMaybe<string | undefined>;
2050
+ "clip-path"?: FunctionMaybe<string | undefined>;
2051
+ "clip-rule"?: FunctionMaybe<"nonzero" | "evenodd" | "inherit" | undefined>;
2052
+ color?: FunctionMaybe<string | undefined>;
2053
+ "color-interpolation"?: FunctionMaybe<"auto" | "sRGB" | "linearRGB" | "inherit" | undefined>;
2054
+ "color-interpolation-filters"?: FunctionMaybe<
2055
+ "auto" | "sRGB" | "linearRGB" | "inherit" | undefined
2056
+ >;
2057
+ "color-profile"?: FunctionMaybe<string | undefined>;
2058
+ "color-rendering"?: FunctionMaybe<
2059
+ "auto" | "optimizeSpeed" | "optimizeQuality" | "inherit" | undefined
2060
+ >;
2061
+ cursor?: FunctionMaybe<string | undefined>;
2062
+ direction?: FunctionMaybe<"ltr" | "rtl" | "inherit" | undefined>;
2063
+ display?: FunctionMaybe<string | undefined>;
2064
+ "dominant-baseline"?: FunctionMaybe<
2065
+ | "auto"
2066
+ | "text-bottom"
2067
+ | "alphabetic"
2068
+ | "ideographic"
2069
+ | "middle"
2070
+ | "central"
2071
+ | "mathematical"
2072
+ | "hanging"
2073
+ | "text-top"
2074
+ | "inherit"
2075
+ | undefined
2076
+ >;
2077
+ "enable-background"?: FunctionMaybe<string | undefined>;
2078
+ fill?: FunctionMaybe<string | undefined>;
2079
+ "fill-opacity"?: FunctionMaybe<number | string | "inherit" | undefined>;
2080
+ "fill-rule"?: FunctionMaybe<"nonzero" | "evenodd" | "inherit" | undefined>;
2081
+ filter?: FunctionMaybe<string | undefined>;
2082
+ "flood-color"?: FunctionMaybe<string | undefined>;
2083
+ "flood-opacity"?: FunctionMaybe<number | string | "inherit" | undefined>;
2084
+ "font-family"?: FunctionMaybe<string | undefined>;
2085
+ "font-size"?: FunctionMaybe<string | undefined>;
2086
+ "font-size-adjust"?: FunctionMaybe<number | string | undefined>;
2087
+ "font-stretch"?: FunctionMaybe<string | undefined>;
2088
+ "font-style"?: FunctionMaybe<"normal" | "italic" | "oblique" | "inherit" | undefined>;
2089
+ "font-variant"?: FunctionMaybe<string | undefined>;
2090
+ "font-weight"?: FunctionMaybe<number | string | undefined>;
2091
+ "glyph-orientation-horizontal"?: FunctionMaybe<string | undefined>;
2092
+ "glyph-orientation-vertical"?: FunctionMaybe<string | undefined>;
2093
+ "image-rendering"?: FunctionMaybe<
2094
+ "auto" | "optimizeQuality" | "optimizeSpeed" | "inherit" | undefined
2095
+ >;
2096
+ kerning?: FunctionMaybe<string | undefined>;
2097
+ "letter-spacing"?: FunctionMaybe<number | string | undefined>;
2098
+ "lighting-color"?: FunctionMaybe<string | undefined>;
2099
+ "marker-end"?: FunctionMaybe<string | undefined>;
2100
+ "marker-mid"?: FunctionMaybe<string | undefined>;
2101
+ "marker-start"?: FunctionMaybe<string | undefined>;
2102
+ mask?: FunctionMaybe<string | undefined>;
2103
+ opacity?: FunctionMaybe<number | string | "inherit" | undefined>;
2104
+ overflow?: FunctionMaybe<"visible" | "hidden" | "scroll" | "auto" | "inherit" | undefined>;
2105
+ pathLength?: FunctionMaybe<string | number | undefined>;
2106
+ "pointer-events"?: FunctionMaybe<
2107
+ | "bounding-box"
2108
+ | "visiblePainted"
2109
+ | "visibleFill"
2110
+ | "visibleStroke"
2111
+ | "visible"
2112
+ | "painted"
2113
+ | "color"
2114
+ | "fill"
2115
+ | "stroke"
2116
+ | "all"
2117
+ | "none"
2118
+ | "inherit"
2119
+ | undefined
2120
+ >;
2121
+ "shape-rendering"?: FunctionMaybe<
2122
+ "auto" | "optimizeSpeed" | "crispEdges" | "geometricPrecision" | "inherit" | undefined
2123
+ >;
2124
+ "stop-color"?: FunctionMaybe<string | undefined>;
2125
+ "stop-opacity"?: FunctionMaybe<number | string | "inherit" | undefined>;
2126
+ stroke?: FunctionMaybe<string | undefined>;
2127
+ "stroke-dasharray"?: FunctionMaybe<string | undefined>;
2128
+ "stroke-dashoffset"?: FunctionMaybe<number | string | undefined>;
2129
+ "stroke-linecap"?: FunctionMaybe<"butt" | "round" | "square" | "inherit" | undefined>;
2130
+ "stroke-linejoin"?: FunctionMaybe<
2131
+ "arcs" | "bevel" | "miter" | "miter-clip" | "round" | "inherit" | undefined
2132
+ >;
2133
+ "stroke-miterlimit"?: FunctionMaybe<number | string | "inherit" | undefined>;
2134
+ "stroke-opacity"?: FunctionMaybe<number | string | "inherit" | undefined>;
2135
+ "stroke-width"?: FunctionMaybe<number | string | undefined>;
2136
+ "text-anchor"?: FunctionMaybe<"start" | "middle" | "end" | "inherit" | undefined>;
2137
+ "text-decoration"?: FunctionMaybe<
2138
+ "none" | "underline" | "overline" | "line-through" | "blink" | "inherit" | undefined
2139
+ >;
2140
+ "text-rendering"?: FunctionMaybe<
2141
+ "auto" | "optimizeSpeed" | "optimizeLegibility" | "geometricPrecision" | "inherit" | undefined
2142
+ >;
2143
+ "unicode-bidi"?: FunctionMaybe<string | undefined>;
2144
+ visibility?: FunctionMaybe<"visible" | "hidden" | "collapse" | "inherit" | undefined>;
2145
+ "word-spacing"?: FunctionMaybe<number | string | undefined>;
2146
+ "writing-mode"?: FunctionMaybe<
2147
+ "lr-tb" | "rl-tb" | "tb-rl" | "lr" | "rl" | "tb" | "inherit" | undefined
2148
+ >;
2149
+ }
2150
+ interface AnimationElementSVGAttributes<T>
2151
+ extends CoreSVGAttributes<T>,
2152
+ ExternalResourceSVGAttributes,
2153
+ ConditionalProcessingSVGAttributes {}
2154
+ interface ContainerElementSVGAttributes<T>
2155
+ extends CoreSVGAttributes<T>,
2156
+ ShapeElementSVGAttributes<T>,
2157
+ Pick<
2158
+ PresentationSVGAttributes,
2159
+ | "clip-path"
2160
+ | "mask"
2161
+ | "cursor"
2162
+ | "opacity"
2163
+ | "filter"
2164
+ | "enable-background"
2165
+ | "color-interpolation"
2166
+ | "color-rendering"
2167
+ > {}
2168
+ interface FilterPrimitiveElementSVGAttributes<T>
2169
+ extends CoreSVGAttributes<T>,
2170
+ Pick<PresentationSVGAttributes, "color-interpolation-filters"> {
2171
+ x?: FunctionMaybe<number | string | undefined>;
2172
+ y?: FunctionMaybe<number | string | undefined>;
2173
+ width?: FunctionMaybe<number | string | undefined>;
2174
+ height?: FunctionMaybe<number | string | undefined>;
2175
+ result?: FunctionMaybe<string | undefined>;
2176
+ }
2177
+ interface SingleInputFilterSVGAttributes {
2178
+ in?: FunctionMaybe<string | undefined>;
2179
+ }
2180
+ interface DoubleInputFilterSVGAttributes {
2181
+ in?: FunctionMaybe<string | undefined>;
2182
+ in2?: FunctionMaybe<string | undefined>;
2183
+ }
2184
+ interface FitToViewBoxSVGAttributes {
2185
+ viewBox?: FunctionMaybe<string | undefined>;
2186
+ preserveAspectRatio?: FunctionMaybe<SVGPreserveAspectRatio | undefined>;
2187
+ }
2188
+ interface GradientElementSVGAttributes<T>
2189
+ extends CoreSVGAttributes<T>,
2190
+ ExternalResourceSVGAttributes,
2191
+ StylableSVGAttributes {
2192
+ gradientUnits?: FunctionMaybe<SVGUnits | undefined>;
2193
+ gradientTransform?: FunctionMaybe<string | undefined>;
2194
+ spreadMethod?: FunctionMaybe<"pad" | "reflect" | "repeat" | undefined>;
2195
+ href?: FunctionMaybe<string | undefined>;
2196
+ }
2197
+ interface GraphicsElementSVGAttributes<T>
2198
+ extends CoreSVGAttributes<T>,
2199
+ Pick<
2200
+ PresentationSVGAttributes,
2201
+ | "clip-rule"
2202
+ | "mask"
2203
+ | "pointer-events"
2204
+ | "cursor"
2205
+ | "opacity"
2206
+ | "filter"
2207
+ | "display"
2208
+ | "visibility"
2209
+ | "color-interpolation"
2210
+ | "color-rendering"
2211
+ > {}
2212
+ interface LightSourceElementSVGAttributes<T> extends CoreSVGAttributes<T> {}
2213
+ interface NewViewportSVGAttributes<T>
2214
+ extends CoreSVGAttributes<T>,
2215
+ Pick<PresentationSVGAttributes, "overflow" | "clip"> {
2216
+ viewBox?: FunctionMaybe<string | undefined>;
2217
+ }
2218
+ interface ShapeElementSVGAttributes<T>
2219
+ extends CoreSVGAttributes<T>,
2220
+ Pick<
2221
+ PresentationSVGAttributes,
2222
+ | "color"
2223
+ | "fill"
2224
+ | "fill-rule"
2225
+ | "fill-opacity"
2226
+ | "stroke"
2227
+ | "stroke-width"
2228
+ | "stroke-linecap"
2229
+ | "stroke-linejoin"
2230
+ | "stroke-miterlimit"
2231
+ | "stroke-dasharray"
2232
+ | "stroke-dashoffset"
2233
+ | "stroke-opacity"
2234
+ | "shape-rendering"
2235
+ | "pathLength"
2236
+ > {}
2237
+ interface TextContentElementSVGAttributes<T>
2238
+ extends CoreSVGAttributes<T>,
2239
+ Pick<
2240
+ PresentationSVGAttributes,
2241
+ | "font-family"
2242
+ | "font-style"
2243
+ | "font-variant"
2244
+ | "font-weight"
2245
+ | "font-stretch"
2246
+ | "font-size"
2247
+ | "font-size-adjust"
2248
+ | "kerning"
2249
+ | "letter-spacing"
2250
+ | "word-spacing"
2251
+ | "text-decoration"
2252
+ | "glyph-orientation-horizontal"
2253
+ | "glyph-orientation-vertical"
2254
+ | "direction"
2255
+ | "unicode-bidi"
2256
+ | "text-anchor"
2257
+ | "dominant-baseline"
2258
+ | "color"
2259
+ | "fill"
2260
+ | "fill-rule"
2261
+ | "fill-opacity"
2262
+ | "stroke"
2263
+ | "stroke-width"
2264
+ | "stroke-linecap"
2265
+ | "stroke-linejoin"
2266
+ | "stroke-miterlimit"
2267
+ | "stroke-dasharray"
2268
+ | "stroke-dashoffset"
2269
+ | "stroke-opacity"
2270
+ > {}
2271
+ interface ZoomAndPanSVGAttributes {
2272
+ /**
2273
+ * @deprecated
2274
+ * @non-standard
2275
+ */
2276
+ zoomAndPan?: FunctionMaybe<"disable" | "magnify" | undefined>;
2277
+ }
2278
+ interface AnimateSVGAttributes<T>
2279
+ extends AnimationElementSVGAttributes<T>,
2280
+ AnimationAttributeTargetSVGAttributes,
2281
+ AnimationTimingSVGAttributes,
2282
+ AnimationValueSVGAttributes,
2283
+ AnimationAdditionSVGAttributes,
2284
+ Pick<PresentationSVGAttributes, "color-interpolation" | "color-rendering"> {}
2285
+ interface AnimateMotionSVGAttributes<T>
2286
+ extends AnimationElementSVGAttributes<T>,
2287
+ AnimationTimingSVGAttributes,
2288
+ AnimationValueSVGAttributes,
2289
+ AnimationAdditionSVGAttributes {
2290
+ path?: FunctionMaybe<string | undefined>;
2291
+ keyPoints?: FunctionMaybe<string | undefined>;
2292
+ rotate?: FunctionMaybe<number | string | "auto" | "auto-reverse" | undefined>;
2293
+ origin?: FunctionMaybe<"default" | undefined>;
2294
+ }
2295
+ interface AnimateTransformSVGAttributes<T>
2296
+ extends AnimationElementSVGAttributes<T>,
2297
+ AnimationAttributeTargetSVGAttributes,
2298
+ AnimationTimingSVGAttributes,
2299
+ AnimationValueSVGAttributes,
2300
+ AnimationAdditionSVGAttributes {
2301
+ type?: FunctionMaybe<"translate" | "scale" | "rotate" | "skewX" | "skewY" | undefined>;
2302
+ }
2303
+ interface CircleSVGAttributes<T>
2304
+ extends GraphicsElementSVGAttributes<T>,
2305
+ ShapeElementSVGAttributes<T>,
2306
+ ConditionalProcessingSVGAttributes,
2307
+ StylableSVGAttributes,
2308
+ TransformableSVGAttributes {
2309
+ cx?: FunctionMaybe<number | string | undefined>;
2310
+ cy?: FunctionMaybe<number | string | undefined>;
2311
+ r?: FunctionMaybe<number | string | undefined>;
2312
+ }
2313
+ interface ClipPathSVGAttributes<T>
2314
+ extends CoreSVGAttributes<T>,
2315
+ ConditionalProcessingSVGAttributes,
2316
+ ExternalResourceSVGAttributes,
2317
+ StylableSVGAttributes,
2318
+ TransformableSVGAttributes,
2319
+ Pick<PresentationSVGAttributes, "clip-path"> {
2320
+ clipPathUnits?: FunctionMaybe<SVGUnits | undefined>;
2321
+ }
2322
+ interface DefsSVGAttributes<T>
2323
+ extends ContainerElementSVGAttributes<T>,
2324
+ ConditionalProcessingSVGAttributes,
2325
+ ExternalResourceSVGAttributes,
2326
+ StylableSVGAttributes,
2327
+ TransformableSVGAttributes {}
2328
+ interface DescSVGAttributes<T> extends CoreSVGAttributes<T>, StylableSVGAttributes {}
2329
+ interface EllipseSVGAttributes<T>
2330
+ extends GraphicsElementSVGAttributes<T>,
2331
+ ShapeElementSVGAttributes<T>,
2332
+ ConditionalProcessingSVGAttributes,
2333
+ ExternalResourceSVGAttributes,
2334
+ StylableSVGAttributes,
2335
+ TransformableSVGAttributes {
2336
+ cx?: FunctionMaybe<number | string | undefined>;
2337
+ cy?: FunctionMaybe<number | string | undefined>;
2338
+ rx?: FunctionMaybe<number | string | undefined>;
2339
+ ry?: FunctionMaybe<number | string | undefined>;
2340
+ }
2341
+ interface FeBlendSVGAttributes<T>
2342
+ extends FilterPrimitiveElementSVGAttributes<T>,
2343
+ DoubleInputFilterSVGAttributes,
2344
+ StylableSVGAttributes {
2345
+ mode?: FunctionMaybe<"normal" | "multiply" | "screen" | "darken" | "lighten" | undefined>;
2346
+ }
2347
+ interface FeColorMatrixSVGAttributes<T>
2348
+ extends FilterPrimitiveElementSVGAttributes<T>,
2349
+ SingleInputFilterSVGAttributes,
2350
+ StylableSVGAttributes {
2351
+ type?: FunctionMaybe<"matrix" | "saturate" | "hueRotate" | "luminanceToAlpha" | undefined>;
2352
+ values?: FunctionMaybe<string | undefined>;
2353
+ }
2354
+ interface FeComponentTransferSVGAttributes<T>
2355
+ extends FilterPrimitiveElementSVGAttributes<T>,
2356
+ SingleInputFilterSVGAttributes,
2357
+ StylableSVGAttributes {}
2358
+ interface FeCompositeSVGAttributes<T>
2359
+ extends FilterPrimitiveElementSVGAttributes<T>,
2360
+ DoubleInputFilterSVGAttributes,
2361
+ StylableSVGAttributes {
2362
+ operator?: FunctionMaybe<"over" | "in" | "out" | "atop" | "xor" | "arithmetic" | undefined>;
2363
+ k1?: FunctionMaybe<number | string | undefined>;
2364
+ k2?: FunctionMaybe<number | string | undefined>;
2365
+ k3?: FunctionMaybe<number | string | undefined>;
2366
+ k4?: FunctionMaybe<number | string | undefined>;
2367
+ }
2368
+ interface FeConvolveMatrixSVGAttributes<T>
2369
+ extends FilterPrimitiveElementSVGAttributes<T>,
2370
+ SingleInputFilterSVGAttributes,
2371
+ StylableSVGAttributes {
2372
+ order?: FunctionMaybe<number | string | undefined>;
2373
+ kernelMatrix?: FunctionMaybe<string | undefined>;
2374
+ divisor?: FunctionMaybe<number | string | undefined>;
2375
+ bias?: FunctionMaybe<number | string | undefined>;
2376
+ targetX?: FunctionMaybe<number | string | undefined>;
2377
+ targetY?: FunctionMaybe<number | string | undefined>;
2378
+ edgeMode?: FunctionMaybe<"duplicate" | "wrap" | "none" | undefined>;
2379
+ kernelUnitLength?: FunctionMaybe<number | string | undefined>;
2380
+ preserveAlpha?: FunctionMaybe<"true" | "false" | undefined>;
2381
+ }
2382
+ interface FeDiffuseLightingSVGAttributes<T>
2383
+ extends FilterPrimitiveElementSVGAttributes<T>,
2384
+ SingleInputFilterSVGAttributes,
2385
+ StylableSVGAttributes,
2386
+ Pick<PresentationSVGAttributes, "color" | "lighting-color"> {
2387
+ surfaceScale?: FunctionMaybe<number | string | undefined>;
2388
+ diffuseConstant?: FunctionMaybe<number | string | undefined>;
2389
+ kernelUnitLength?: FunctionMaybe<number | string | undefined>;
2390
+ }
2391
+ interface FeDisplacementMapSVGAttributes<T>
2392
+ extends FilterPrimitiveElementSVGAttributes<T>,
2393
+ DoubleInputFilterSVGAttributes,
2394
+ StylableSVGAttributes {
2395
+ scale?: FunctionMaybe<number | string | undefined>;
2396
+ xChannelSelector?: FunctionMaybe<"R" | "G" | "B" | "A" | undefined>;
2397
+ yChannelSelector?: FunctionMaybe<"R" | "G" | "B" | "A" | undefined>;
2398
+ }
2399
+ interface FeDistantLightSVGAttributes<T> extends LightSourceElementSVGAttributes<T> {
2400
+ azimuth?: FunctionMaybe<number | string | undefined>;
2401
+ elevation?: FunctionMaybe<number | string | undefined>;
2402
+ }
2403
+ interface FeDropShadowSVGAttributes<T>
2404
+ extends CoreSVGAttributes<T>,
2405
+ FilterPrimitiveElementSVGAttributes<T>,
2406
+ StylableSVGAttributes,
2407
+ Pick<PresentationSVGAttributes, "color" | "flood-color" | "flood-opacity"> {
2408
+ dx?: FunctionMaybe<number | string | undefined>;
2409
+ dy?: FunctionMaybe<number | string | undefined>;
2410
+ stdDeviation?: FunctionMaybe<number | string | undefined>;
2411
+ }
2412
+ interface FeFloodSVGAttributes<T>
2413
+ extends FilterPrimitiveElementSVGAttributes<T>,
2414
+ StylableSVGAttributes,
2415
+ Pick<PresentationSVGAttributes, "color" | "flood-color" | "flood-opacity"> {}
2416
+ interface FeFuncSVGAttributes<T> extends CoreSVGAttributes<T> {
2417
+ type?: FunctionMaybe<"identity" | "table" | "discrete" | "linear" | "gamma" | undefined>;
2418
+ tableValues?: FunctionMaybe<string | undefined>;
2419
+ slope?: FunctionMaybe<number | string | undefined>;
2420
+ intercept?: FunctionMaybe<number | string | undefined>;
2421
+ amplitude?: FunctionMaybe<number | string | undefined>;
2422
+ exponent?: FunctionMaybe<number | string | undefined>;
2423
+ offset?: FunctionMaybe<number | string | undefined>;
2424
+ }
2425
+ interface FeGaussianBlurSVGAttributes<T>
2426
+ extends FilterPrimitiveElementSVGAttributes<T>,
2427
+ SingleInputFilterSVGAttributes,
2428
+ StylableSVGAttributes {
2429
+ stdDeviation?: FunctionMaybe<number | string | undefined>;
2430
+ }
2431
+ interface FeImageSVGAttributes<T>
2432
+ extends FilterPrimitiveElementSVGAttributes<T>,
2433
+ ExternalResourceSVGAttributes,
2434
+ StylableSVGAttributes {
2435
+ preserveAspectRatio?: FunctionMaybe<SVGPreserveAspectRatio | undefined>;
2436
+ href?: FunctionMaybe<string | undefined>;
2437
+ }
2438
+ interface FeMergeSVGAttributes<T>
2439
+ extends FilterPrimitiveElementSVGAttributes<T>,
2440
+ StylableSVGAttributes {}
2441
+ interface FeMergeNodeSVGAttributes<T>
2442
+ extends CoreSVGAttributes<T>,
2443
+ SingleInputFilterSVGAttributes {}
2444
+ interface FeMorphologySVGAttributes<T>
2445
+ extends FilterPrimitiveElementSVGAttributes<T>,
2446
+ SingleInputFilterSVGAttributes,
2447
+ StylableSVGAttributes {
2448
+ operator?: FunctionMaybe<"erode" | "dilate" | undefined>;
2449
+ radius?: FunctionMaybe<number | string | undefined>;
2450
+ }
2451
+ interface FeOffsetSVGAttributes<T>
2452
+ extends FilterPrimitiveElementSVGAttributes<T>,
2453
+ SingleInputFilterSVGAttributes,
2454
+ StylableSVGAttributes {
2455
+ dx?: FunctionMaybe<number | string | undefined>;
2456
+ dy?: FunctionMaybe<number | string | undefined>;
2457
+ }
2458
+ interface FePointLightSVGAttributes<T> extends LightSourceElementSVGAttributes<T> {
2459
+ x?: FunctionMaybe<number | string | undefined>;
2460
+ y?: FunctionMaybe<number | string | undefined>;
2461
+ z?: FunctionMaybe<number | string | undefined>;
2462
+ }
2463
+ interface FeSpecularLightingSVGAttributes<T>
2464
+ extends FilterPrimitiveElementSVGAttributes<T>,
2465
+ SingleInputFilterSVGAttributes,
2466
+ StylableSVGAttributes,
2467
+ Pick<PresentationSVGAttributes, "color" | "lighting-color"> {
2468
+ surfaceScale?: FunctionMaybe<string | undefined>;
2469
+ specularConstant?: FunctionMaybe<string | undefined>;
2470
+ specularExponent?: FunctionMaybe<string | undefined>;
2471
+ kernelUnitLength?: FunctionMaybe<number | string | undefined>;
2472
+ }
2473
+ interface FeSpotLightSVGAttributes<T> extends LightSourceElementSVGAttributes<T> {
2474
+ x?: FunctionMaybe<number | string | undefined>;
2475
+ y?: FunctionMaybe<number | string | undefined>;
2476
+ z?: FunctionMaybe<number | string | undefined>;
2477
+ pointsAtX?: FunctionMaybe<number | string | undefined>;
2478
+ pointsAtY?: FunctionMaybe<number | string | undefined>;
2479
+ pointsAtZ?: FunctionMaybe<number | string | undefined>;
2480
+ specularExponent?: FunctionMaybe<number | string | undefined>;
2481
+ limitingConeAngle?: FunctionMaybe<number | string | undefined>;
2482
+ }
2483
+ interface FeTileSVGAttributes<T>
2484
+ extends FilterPrimitiveElementSVGAttributes<T>,
2485
+ SingleInputFilterSVGAttributes,
2486
+ StylableSVGAttributes {}
2487
+ interface FeTurbulanceSVGAttributes<T>
2488
+ extends FilterPrimitiveElementSVGAttributes<T>,
2489
+ StylableSVGAttributes {
2490
+ baseFrequency?: FunctionMaybe<number | string | undefined>;
2491
+ numOctaves?: FunctionMaybe<number | string | undefined>;
2492
+ seed?: FunctionMaybe<number | string | undefined>;
2493
+ stitchTiles?: FunctionMaybe<"stitch" | "noStitch" | undefined>;
2494
+ type?: FunctionMaybe<"fractalNoise" | "turbulence" | undefined>;
2495
+ }
2496
+ interface FilterSVGAttributes<T>
2497
+ extends CoreSVGAttributes<T>,
2498
+ ExternalResourceSVGAttributes,
2499
+ StylableSVGAttributes {
2500
+ filterUnits?: FunctionMaybe<SVGUnits | undefined>;
2501
+ primitiveUnits?: FunctionMaybe<SVGUnits | undefined>;
2502
+ x?: FunctionMaybe<number | string | undefined>;
2503
+ y?: FunctionMaybe<number | string | undefined>;
2504
+ width?: FunctionMaybe<number | string | undefined>;
2505
+ height?: FunctionMaybe<number | string | undefined>;
2506
+ filterRes?: FunctionMaybe<number | string | undefined>;
2507
+ }
2508
+ interface ForeignObjectSVGAttributes<T>
2509
+ extends NewViewportSVGAttributes<T>,
2510
+ ConditionalProcessingSVGAttributes,
2511
+ ExternalResourceSVGAttributes,
2512
+ StylableSVGAttributes,
2513
+ TransformableSVGAttributes,
2514
+ Pick<PresentationSVGAttributes, "display" | "visibility"> {
2515
+ x?: FunctionMaybe<number | string | undefined>;
2516
+ y?: FunctionMaybe<number | string | undefined>;
2517
+ width?: FunctionMaybe<number | string | undefined>;
2518
+ height?: FunctionMaybe<number | string | undefined>;
2519
+ }
2520
+ interface GSVGAttributes<T>
2521
+ extends ContainerElementSVGAttributes<T>,
2522
+ ConditionalProcessingSVGAttributes,
2523
+ ExternalResourceSVGAttributes,
2524
+ StylableSVGAttributes,
2525
+ TransformableSVGAttributes,
2526
+ Pick<PresentationSVGAttributes, "display" | "visibility"> {}
2527
+ interface ImageSVGAttributes<T>
2528
+ extends NewViewportSVGAttributes<T>,
2529
+ GraphicsElementSVGAttributes<T>,
2530
+ ConditionalProcessingSVGAttributes,
2531
+ StylableSVGAttributes,
2532
+ TransformableSVGAttributes,
2533
+ Pick<PresentationSVGAttributes, "color-profile" | "image-rendering"> {
2534
+ x?: FunctionMaybe<number | string | undefined>;
2535
+ y?: FunctionMaybe<number | string | undefined>;
2536
+ width?: FunctionMaybe<number | string | undefined>;
2537
+ height?: FunctionMaybe<number | string | undefined>;
2538
+ preserveAspectRatio?: FunctionMaybe<ImagePreserveAspectRatio | undefined>;
2539
+ href?: FunctionMaybe<string | undefined>;
2540
+ }
2541
+ interface LineSVGAttributes<T>
2542
+ extends GraphicsElementSVGAttributes<T>,
2543
+ ShapeElementSVGAttributes<T>,
2544
+ ConditionalProcessingSVGAttributes,
2545
+ ExternalResourceSVGAttributes,
2546
+ StylableSVGAttributes,
2547
+ TransformableSVGAttributes,
2548
+ Pick<PresentationSVGAttributes, "marker-start" | "marker-mid" | "marker-end"> {
2549
+ x1?: FunctionMaybe<number | string | undefined>;
2550
+ y1?: FunctionMaybe<number | string | undefined>;
2551
+ x2?: FunctionMaybe<number | string | undefined>;
2552
+ y2?: FunctionMaybe<number | string | undefined>;
2553
+ }
2554
+ interface LinearGradientSVGAttributes<T> extends GradientElementSVGAttributes<T> {
2555
+ x1?: FunctionMaybe<number | string | undefined>;
2556
+ x2?: FunctionMaybe<number | string | undefined>;
2557
+ y1?: FunctionMaybe<number | string | undefined>;
2558
+ y2?: FunctionMaybe<number | string | undefined>;
2559
+ }
2560
+ interface MarkerSVGAttributes<T>
2561
+ extends ContainerElementSVGAttributes<T>,
2562
+ ExternalResourceSVGAttributes,
2563
+ StylableSVGAttributes,
2564
+ FitToViewBoxSVGAttributes,
2565
+ Pick<PresentationSVGAttributes, "overflow" | "clip"> {
2566
+ markerUnits?: FunctionMaybe<"strokeWidth" | "userSpaceOnUse" | undefined>;
2567
+ refX?: FunctionMaybe<number | string | undefined>;
2568
+ refY?: FunctionMaybe<number | string | undefined>;
2569
+ markerWidth?: FunctionMaybe<number | string | undefined>;
2570
+ markerHeight?: FunctionMaybe<number | string | undefined>;
2571
+ orient?: FunctionMaybe<string | undefined>;
2572
+ }
2573
+ interface MaskSVGAttributes<T>
2574
+ extends Omit<ContainerElementSVGAttributes<T>, "opacity" | "filter">,
2575
+ ConditionalProcessingSVGAttributes,
2576
+ ExternalResourceSVGAttributes,
2577
+ StylableSVGAttributes {
2578
+ maskUnits?: FunctionMaybe<SVGUnits | undefined>;
2579
+ maskContentUnits?: FunctionMaybe<SVGUnits | undefined>;
2580
+ x?: FunctionMaybe<number | string | undefined>;
2581
+ y?: FunctionMaybe<number | string | undefined>;
2582
+ width?: FunctionMaybe<number | string | undefined>;
2583
+ height?: FunctionMaybe<number | string | undefined>;
2584
+ }
2585
+ interface MetadataSVGAttributes<T> extends CoreSVGAttributes<T> {}
2586
+ interface MPathSVGAttributes<T> extends CoreSVGAttributes<T> {}
2587
+ interface PathSVGAttributes<T>
2588
+ extends GraphicsElementSVGAttributes<T>,
2589
+ ShapeElementSVGAttributes<T>,
2590
+ ConditionalProcessingSVGAttributes,
2591
+ ExternalResourceSVGAttributes,
2592
+ StylableSVGAttributes,
2593
+ TransformableSVGAttributes,
2594
+ Pick<PresentationSVGAttributes, "marker-start" | "marker-mid" | "marker-end"> {
2595
+ d?: FunctionMaybe<string | undefined>;
2596
+ pathLength?: FunctionMaybe<number | string | undefined>;
2597
+ }
2598
+ interface PatternSVGAttributes<T>
2599
+ extends ContainerElementSVGAttributes<T>,
2600
+ ConditionalProcessingSVGAttributes,
2601
+ ExternalResourceSVGAttributes,
2602
+ StylableSVGAttributes,
2603
+ FitToViewBoxSVGAttributes,
2604
+ Pick<PresentationSVGAttributes, "overflow" | "clip"> {
2605
+ x?: FunctionMaybe<number | string | undefined>;
2606
+ y?: FunctionMaybe<number | string | undefined>;
2607
+ width?: FunctionMaybe<number | string | undefined>;
2608
+ height?: FunctionMaybe<number | string | undefined>;
2609
+ patternUnits?: FunctionMaybe<SVGUnits | undefined>;
2610
+ patternContentUnits?: FunctionMaybe<SVGUnits | undefined>;
2611
+ patternTransform?: FunctionMaybe<string | undefined>;
2612
+ href?: FunctionMaybe<string | undefined>;
2613
+ }
2614
+ interface PolygonSVGAttributes<T>
2615
+ extends GraphicsElementSVGAttributes<T>,
2616
+ ShapeElementSVGAttributes<T>,
2617
+ ConditionalProcessingSVGAttributes,
2618
+ ExternalResourceSVGAttributes,
2619
+ StylableSVGAttributes,
2620
+ TransformableSVGAttributes,
2621
+ Pick<PresentationSVGAttributes, "marker-start" | "marker-mid" | "marker-end"> {
2622
+ points?: FunctionMaybe<string | undefined>;
2623
+ }
2624
+ interface PolylineSVGAttributes<T>
2625
+ extends GraphicsElementSVGAttributes<T>,
2626
+ ShapeElementSVGAttributes<T>,
2627
+ ConditionalProcessingSVGAttributes,
2628
+ ExternalResourceSVGAttributes,
2629
+ StylableSVGAttributes,
2630
+ TransformableSVGAttributes,
2631
+ Pick<PresentationSVGAttributes, "marker-start" | "marker-mid" | "marker-end"> {
2632
+ points?: FunctionMaybe<string | undefined>;
2633
+ }
2634
+ interface RadialGradientSVGAttributes<T> extends GradientElementSVGAttributes<T> {
2635
+ cx?: FunctionMaybe<number | string | undefined>;
2636
+ cy?: FunctionMaybe<number | string | undefined>;
2637
+ r?: FunctionMaybe<number | string | undefined>;
2638
+ fx?: FunctionMaybe<number | string | undefined>;
2639
+ fy?: FunctionMaybe<number | string | undefined>;
2640
+ }
2641
+ interface RectSVGAttributes<T>
2642
+ extends GraphicsElementSVGAttributes<T>,
2643
+ ShapeElementSVGAttributes<T>,
2644
+ ConditionalProcessingSVGAttributes,
2645
+ ExternalResourceSVGAttributes,
2646
+ StylableSVGAttributes,
2647
+ TransformableSVGAttributes {
2648
+ x?: FunctionMaybe<number | string | undefined>;
2649
+ y?: FunctionMaybe<number | string | undefined>;
2650
+ width?: FunctionMaybe<number | string | undefined>;
2651
+ height?: FunctionMaybe<number | string | undefined>;
2652
+ rx?: FunctionMaybe<number | string | undefined>;
2653
+ ry?: FunctionMaybe<number | string | undefined>;
2654
+ }
2655
+ interface SetSVGAttributes<T>
2656
+ extends CoreSVGAttributes<T>,
2657
+ StylableSVGAttributes,
2658
+ AnimationTimingSVGAttributes {}
2659
+ interface StopSVGAttributes<T>
2660
+ extends CoreSVGAttributes<T>,
2661
+ StylableSVGAttributes,
2662
+ Pick<PresentationSVGAttributes, "color" | "stop-color" | "stop-opacity"> {
2663
+ offset?: FunctionMaybe<number | string | undefined>;
2664
+ }
2665
+ interface SvgSVGAttributes<T>
2666
+ extends ContainerElementSVGAttributes<T>,
2667
+ NewViewportSVGAttributes<T>,
2668
+ ConditionalProcessingSVGAttributes,
2669
+ ExternalResourceSVGAttributes,
2670
+ StylableSVGAttributes,
2671
+ FitToViewBoxSVGAttributes,
2672
+ ZoomAndPanSVGAttributes,
2673
+ PresentationSVGAttributes {
2674
+ "xmlns:xlink"?: FunctionMaybe<string | undefined>;
2675
+ contentScriptType?: FunctionMaybe<string | undefined>;
2676
+ contentStyleType?: FunctionMaybe<string | undefined>;
2677
+ height?: FunctionMaybe<number | string | undefined>;
2678
+ width?: FunctionMaybe<number | string | undefined>;
2679
+ x?: FunctionMaybe<number | string | undefined>;
2680
+ xmlns?: FunctionMaybe<string | undefined>;
2681
+ y?: FunctionMaybe<number | string | undefined>;
2682
+
2683
+ /** @deprecated */
2684
+ baseProfile?: FunctionMaybe<string | undefined>;
2685
+ /** @deprecated */
2686
+ version?: FunctionMaybe<string | undefined>;
2687
+ }
2688
+ interface SwitchSVGAttributes<T>
2689
+ extends ContainerElementSVGAttributes<T>,
2690
+ ConditionalProcessingSVGAttributes,
2691
+ ExternalResourceSVGAttributes,
2692
+ StylableSVGAttributes,
2693
+ TransformableSVGAttributes,
2694
+ Pick<PresentationSVGAttributes, "display" | "visibility"> {}
2695
+ interface SymbolSVGAttributes<T>
2696
+ extends ContainerElementSVGAttributes<T>,
2697
+ NewViewportSVGAttributes<T>,
2698
+ ExternalResourceSVGAttributes,
2699
+ StylableSVGAttributes,
2700
+ FitToViewBoxSVGAttributes {
2701
+ width?: FunctionMaybe<number | string | undefined>;
2702
+ height?: FunctionMaybe<number | string | undefined>;
2703
+ preserveAspectRatio?: FunctionMaybe<SVGPreserveAspectRatio | undefined>;
2704
+ refX?: FunctionMaybe<number | string | undefined>;
2705
+ refY?: FunctionMaybe<number | string | undefined>;
2706
+ viewBox?: FunctionMaybe<string | undefined>;
2707
+ x?: FunctionMaybe<number | string | undefined>;
2708
+ y?: FunctionMaybe<number | string | undefined>;
2709
+ }
2710
+ interface TextSVGAttributes<T>
2711
+ extends TextContentElementSVGAttributes<T>,
2712
+ GraphicsElementSVGAttributes<T>,
2713
+ ConditionalProcessingSVGAttributes,
2714
+ ExternalResourceSVGAttributes,
2715
+ StylableSVGAttributes,
2716
+ TransformableSVGAttributes,
2717
+ Pick<PresentationSVGAttributes, "writing-mode" | "text-rendering"> {
2718
+ x?: FunctionMaybe<number | string | undefined>;
2719
+ y?: FunctionMaybe<number | string | undefined>;
2720
+ dx?: FunctionMaybe<number | string | undefined>;
2721
+ dy?: FunctionMaybe<number | string | undefined>;
2722
+ rotate?: FunctionMaybe<number | string | undefined>;
2723
+ textLength?: FunctionMaybe<number | string | undefined>;
2724
+ lengthAdjust?: FunctionMaybe<"spacing" | "spacingAndGlyphs" | undefined>;
2725
+ }
2726
+ interface TextPathSVGAttributes<T>
2727
+ extends TextContentElementSVGAttributes<T>,
2728
+ ConditionalProcessingSVGAttributes,
2729
+ ExternalResourceSVGAttributes,
2730
+ StylableSVGAttributes,
2731
+ Pick<
2732
+ PresentationSVGAttributes,
2733
+ "alignment-baseline" | "baseline-shift" | "display" | "visibility"
2734
+ > {
2735
+ startOffset?: FunctionMaybe<number | string | undefined>;
2736
+ method?: FunctionMaybe<"align" | "stretch" | undefined>;
2737
+ spacing?: FunctionMaybe<"auto" | "exact" | undefined>;
2738
+ href?: FunctionMaybe<string | undefined>;
2739
+ }
2740
+ interface TSpanSVGAttributes<T>
2741
+ extends TextContentElementSVGAttributes<T>,
2742
+ ConditionalProcessingSVGAttributes,
2743
+ ExternalResourceSVGAttributes,
2744
+ StylableSVGAttributes,
2745
+ Pick<
2746
+ PresentationSVGAttributes,
2747
+ "alignment-baseline" | "baseline-shift" | "display" | "visibility"
2748
+ > {
2749
+ x?: FunctionMaybe<number | string | undefined>;
2750
+ y?: FunctionMaybe<number | string | undefined>;
2751
+ dx?: FunctionMaybe<number | string | undefined>;
2752
+ dy?: FunctionMaybe<number | string | undefined>;
2753
+ rotate?: FunctionMaybe<number | string | undefined>;
2754
+ textLength?: FunctionMaybe<number | string | undefined>;
2755
+ lengthAdjust?: FunctionMaybe<"spacing" | "spacingAndGlyphs" | undefined>;
2756
+ }
2757
+ /** @see https://developer.mozilla.org/en-US/docs/Web/SVG/Element/use */
2758
+ interface UseSVGAttributes<T>
2759
+ extends CoreSVGAttributes<T>,
2760
+ StylableSVGAttributes,
2761
+ ConditionalProcessingSVGAttributes,
2762
+ GraphicsElementSVGAttributes<T>,
2763
+ PresentationSVGAttributes,
2764
+ ExternalResourceSVGAttributes,
2765
+ TransformableSVGAttributes {
2766
+ x?: FunctionMaybe<number | string | undefined>;
2767
+ y?: FunctionMaybe<number | string | undefined>;
2768
+ width?: FunctionMaybe<number | string | undefined>;
2769
+ height?: FunctionMaybe<number | string | undefined>;
2770
+ href?: FunctionMaybe<string | undefined>;
2771
+ }
2772
+ interface ViewSVGAttributes<T>
2773
+ extends CoreSVGAttributes<T>,
2774
+ ExternalResourceSVGAttributes,
2775
+ FitToViewBoxSVGAttributes,
2776
+ ZoomAndPanSVGAttributes {
2777
+ viewTarget?: FunctionMaybe<string | undefined>;
2778
+ }
2779
+
2780
+ interface MathMLAttributes<T> extends HTMLAttributes<T> {
2781
+ displaystyle?: FunctionMaybe<"true" | boolean | undefined>;
2782
+ /** @deprecated */
2783
+ href?: FunctionMaybe<string | undefined>;
2784
+ /** @deprecated */
2785
+ mathbackground?: FunctionMaybe<string | undefined>;
2786
+ /** @deprecated */
2787
+ mathcolor?: FunctionMaybe<string | undefined>;
2788
+ /** @deprecated */
2789
+ mathsize?: FunctionMaybe<string | undefined>;
2790
+ nonce?: FunctionMaybe<string | undefined>;
2791
+ scriptlevel?: FunctionMaybe<string | undefined>;
2792
+ }
2793
+
2794
+ interface MathMLAnnotationElementAttributes<T> extends MathMLAttributes<T> {
2795
+ encoding?: FunctionMaybe<string | undefined>;
2796
+
2797
+ /** @deprecated */
2798
+ src?: FunctionMaybe<string | undefined>;
2799
+ }
2800
+ interface MathMLAnnotationXmlElementAttributes<T> extends MathMLAttributes<T> {
2801
+ encoding?: FunctionMaybe<string | undefined>;
2802
+
2803
+ /** @deprecated */
2804
+ src?: FunctionMaybe<string | undefined>;
2805
+ }
2806
+ interface MathMLMactionElementAttributes<T> extends MathMLAttributes<T> {
2807
+ /**
2808
+ * @deprecated
2809
+ * @non-standard
2810
+ */
2811
+ actiontype?: FunctionMaybe<"statusline" | "toggle" | undefined>;
2812
+ /**
2813
+ * @deprecated
2814
+ * @non-standard
2815
+ */
2816
+ selection?: FunctionMaybe<string | undefined>;
2817
+ }
2818
+ interface MathMLMathElementAttributes<T> extends MathMLAttributes<T> {
2819
+ display?: FunctionMaybe<"block" | "inline" | undefined>;
2820
+ }
2821
+ interface MathMLMerrorElementAttributes<T> extends MathMLAttributes<T> {}
2822
+ interface MathMLMfracElementAttributes<T> extends MathMLAttributes<T> {
2823
+ linethickness?: FunctionMaybe<string | undefined>;
2824
+
2825
+ /**
2826
+ * @deprecated
2827
+ * @non-standard
2828
+ */
2829
+ denomalign?: FunctionMaybe<"center" | "left" | "right" | undefined>;
2830
+ /**
2831
+ * @deprecated
2832
+ * @non-standard
2833
+ */
2834
+ numalign?: FunctionMaybe<"center" | "left" | "right" | undefined>;
2835
+ }
2836
+ interface MathMLMiElementAttributes<T> extends MathMLAttributes<T> {
2837
+ mathvariant?: FunctionMaybe<"normal" | undefined>;
2838
+ }
2839
+
2840
+ interface MathMLMmultiscriptsElementAttributes<T> extends MathMLAttributes<T> {
2841
+ /**
2842
+ * @deprecated
2843
+ * @non-standard
2844
+ */
2845
+ subscriptshift?: FunctionMaybe<string | undefined>;
2846
+ /**
2847
+ * @deprecated
2848
+ * @non-standard
2849
+ */
2850
+ superscriptshift?: FunctionMaybe<string | undefined>;
2851
+ }
2852
+ interface MathMLMnElementAttributes<T> extends MathMLAttributes<T> {}
2853
+ interface MathMLMoElementAttributes<T> extends MathMLAttributes<T> {
2854
+ fence?: FunctionMaybe<"true" | boolean | undefined>;
2855
+ form?: FunctionMaybe<"prefix" | "infix" | "postfix" | undefined>;
2856
+ largeop?: FunctionMaybe<"true" | boolean | undefined>;
2857
+ lspace?: FunctionMaybe<string | undefined>;
2858
+ maxsize?: FunctionMaybe<string | undefined>;
2859
+ minsize?: FunctionMaybe<string | undefined>;
2860
+ movablelimits?: FunctionMaybe<"true" | boolean | undefined>;
2861
+ rspace?: FunctionMaybe<string | undefined>;
2862
+ separator?: FunctionMaybe<"true" | boolean | undefined>;
2863
+ stretchy?: FunctionMaybe<"true" | boolean | undefined>;
2864
+ symmetric?: FunctionMaybe<"true" | boolean | undefined>;
2865
+
2866
+ /** @non-standard */
2867
+ accent?: FunctionMaybe<"true" | boolean | undefined>;
2868
+ }
2869
+ interface MathMLMoverElementAttributes<T> extends MathMLAttributes<T> {
2870
+ accent?: FunctionMaybe<"true" | boolean | undefined>;
2871
+ }
2872
+ interface MathMLMpaddedElementAttributes<T> extends MathMLAttributes<T> {
2873
+ depth?: FunctionMaybe<string | undefined>;
2874
+ height?: FunctionMaybe<string | undefined>;
2875
+ lspace?: FunctionMaybe<string | undefined>;
2876
+ voffset?: FunctionMaybe<string | undefined>;
2877
+ width?: FunctionMaybe<string | undefined>;
2878
+ }
2879
+ interface MathMLMphantomElementAttributes<T> extends MathMLAttributes<T> {}
2880
+ interface MathMLMprescriptsElementAttributes<T> extends MathMLAttributes<T> {}
2881
+ interface MathMLMrootElementAttributes<T> extends MathMLAttributes<T> {}
2882
+ interface MathMLMrowElementAttributes<T> extends MathMLAttributes<T> {}
2883
+ interface MathMLMsElementAttributes<T> extends MathMLAttributes<T> {
2884
+ /** @deprecated */
2885
+ lquote?: FunctionMaybe<string | undefined>;
2886
+ /** @deprecated */
2887
+ rquote?: FunctionMaybe<string | undefined>;
2888
+ }
2889
+ interface MathMLMspaceElementAttributes<T> extends MathMLAttributes<T> {
2890
+ depth?: FunctionMaybe<string | undefined>;
2891
+ height?: FunctionMaybe<string | undefined>;
2892
+ width?: FunctionMaybe<string | undefined>;
2893
+ }
2894
+ interface MathMLMsqrtElementAttributes<T> extends MathMLAttributes<T> {}
2895
+ interface MathMLMstyleElementAttributes<T> extends MathMLAttributes<T> {
2896
+ /**
2897
+ * @deprecated
2898
+ * @non-standard
2899
+ */
2900
+ background?: FunctionMaybe<string | undefined>;
2901
+ /**
2902
+ * @deprecated
2903
+ * @non-standard
2904
+ */
2905
+ color?: FunctionMaybe<string | undefined>;
2906
+ /**
2907
+ * @deprecated
2908
+ * @non-standard
2909
+ */
2910
+ fontsize?: FunctionMaybe<string | undefined>;
2911
+ /**
2912
+ * @deprecated
2913
+ * @non-standard
2914
+ */
2915
+ fontstyle?: FunctionMaybe<string | undefined>;
2916
+ /**
2917
+ * @deprecated
2918
+ * @non-standard
2919
+ */
2920
+ fontweight?: FunctionMaybe<string | undefined>;
2921
+
2922
+ /** @deprecated */
2923
+ scriptminsize?: FunctionMaybe<string | undefined>;
2924
+ /** @deprecated */
2925
+ scriptsizemultiplier?: FunctionMaybe<string | undefined>;
2926
+ }
2927
+ interface MathMLMsubElementAttributes<T> extends MathMLAttributes<T> {
2928
+ /**
2929
+ * @deprecated
2930
+ * @non-standard
2931
+ */
2932
+ subscriptshift?: FunctionMaybe<string | undefined>;
2933
+ }
2934
+ interface MathMLMsubsupElementAttributes<T> extends MathMLAttributes<T> {
2935
+ /**
2936
+ * @deprecated
2937
+ * @non-standard
2938
+ */
2939
+ subscriptshift?: FunctionMaybe<string | undefined>;
2940
+ /**
2941
+ * @deprecated
2942
+ * @non-standard
2943
+ */
2944
+ superscriptshift?: FunctionMaybe<string | undefined>;
2945
+ }
2946
+ interface MathMLMsupElementAttributes<T> extends MathMLAttributes<T> {
2947
+ /**
2948
+ * @deprecated
2949
+ * @non-standard
2950
+ */
2951
+ superscriptshift?: FunctionMaybe<string | undefined>;
2952
+ }
2953
+ interface MathMLMtableElementAttributes<T> extends MathMLAttributes<T> {
2954
+ /** @non-standard */
2955
+ align?: FunctionMaybe<"axis" | "baseline" | "bottom" | "center" | "top" | undefined>;
2956
+ /** @non-standard */
2957
+ columnalign?: FunctionMaybe<"center" | "left" | "right" | undefined>;
2958
+ /** @non-standard */
2959
+ columnlines?: FunctionMaybe<"dashed" | "none" | "solid" | undefined>;
2960
+ /** @non-standard */
2961
+ columnspacing?: FunctionMaybe<string | undefined>;
2962
+ /** @non-standard */
2963
+ frame?: FunctionMaybe<"dashed" | "none" | "solid" | undefined>;
2964
+ /** @non-standard */
2965
+ framespacing?: FunctionMaybe<string | undefined>;
2966
+ /** @non-standard */
2967
+ rowalign?: FunctionMaybe<"axis" | "baseline" | "bottom" | "center" | "top" | undefined>;
2968
+ /** @non-standard */
2969
+ rowlines?: FunctionMaybe<"dashed" | "none" | "solid" | undefined>;
2970
+ /** @non-standard */
2971
+ rowspacing?: FunctionMaybe<string | undefined>;
2972
+ /** @non-standard */
2973
+ width?: FunctionMaybe<string | undefined>;
2974
+ }
2975
+ interface MathMLMtdElementAttributes<T> extends MathMLAttributes<T> {
2976
+ columnspan?: FunctionMaybe<number | string | undefined>;
2977
+ rowspan?: FunctionMaybe<number | string | undefined>;
2978
+ /** @non-standard */
2979
+ columnalign?: FunctionMaybe<"center" | "left" | "right" | undefined>;
2980
+ /** @non-standard */
2981
+ rowalign?: FunctionMaybe<"axis" | "baseline" | "bottom" | "center" | "top" | undefined>;
2982
+ }
2983
+ interface MathMLMtextElementAttributes<T> extends MathMLAttributes<T> {}
2984
+ interface MathMLMtrElementAttributes<T> extends MathMLAttributes<T> {
2985
+ /** @non-standard */
2986
+ columnalign?: FunctionMaybe<"center" | "left" | "right" | undefined>;
2987
+ /** @non-standard */
2988
+ rowalign?: FunctionMaybe<"axis" | "baseline" | "bottom" | "center" | "top" | undefined>;
2989
+ }
2990
+ interface MathMLMunderElementAttributes<T> extends MathMLAttributes<T> {
2991
+ accentunder?: FunctionMaybe<"true" | boolean | undefined>;
2992
+ }
2993
+ interface MathMLMunderoverElementAttributes<T> extends MathMLAttributes<T> {
2994
+ accent?: FunctionMaybe<"true" | boolean | undefined>;
2995
+ accentunder?: FunctionMaybe<"true" | boolean | undefined>;
2996
+ }
2997
+ interface MathMLSemanticsElementAttributes<T> extends MathMLAttributes<T> {}
2998
+
2999
+ /* MathMLDeprecatedElements */
3000
+
3001
+ interface MathMLMencloseElementAttributes<T> extends MathMLAttributes<T> {
3002
+ /** @non-standard */
3003
+ notation?: FunctionMaybe<string | undefined>;
3004
+ }
3005
+ interface MathMLMfencedElementAttributes<T> extends MathMLAttributes<T> {
3006
+ close?: FunctionMaybe<string | undefined>;
3007
+ open?: FunctionMaybe<string | undefined>;
3008
+ separators?: FunctionMaybe<string | undefined>;
3009
+ }
3010
+
3011
+ /** @type {HTMLElementTagNameMap} */
3012
+ interface HTMLElementTags {
3013
+ /**
3014
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a
3015
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAnchorElement
3016
+ */
3017
+ a: AnchorHTMLAttributes<HTMLAnchorElement>;
3018
+ /**
3019
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/abbr
3020
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3021
+ */
3022
+ abbr: HTMLAttributes<HTMLElement>;
3023
+ /**
3024
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/address
3025
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3026
+ */
3027
+ address: HTMLAttributes<HTMLElement>;
3028
+ /**
3029
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/area
3030
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAreaElement
3031
+ */
3032
+ area: AreaHTMLAttributes<HTMLAreaElement>;
3033
+ /**
3034
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/article
3035
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3036
+ */
3037
+ article: HTMLAttributes<HTMLElement>;
3038
+ /**
3039
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/aside
3040
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3041
+ */
3042
+ aside: HTMLAttributes<HTMLElement>;
3043
+ /**
3044
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio
3045
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLAudioElement
3046
+ */
3047
+ audio: AudioHTMLAttributes<HTMLAudioElement>;
3048
+ /**
3049
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/b
3050
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3051
+ */
3052
+ b: HTMLAttributes<HTMLElement>;
3053
+ /**
3054
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base
3055
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBaseElement
3056
+ */
3057
+ base: BaseHTMLAttributes<HTMLBaseElement>;
3058
+ /**
3059
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdi
3060
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3061
+ */
3062
+ bdi: HTMLAttributes<HTMLElement>;
3063
+ /**
3064
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdo
3065
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3066
+ */
3067
+ bdo: HTMLAttributes<HTMLElement>;
3068
+ /**
3069
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote
3070
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLQuoteElement
3071
+ */
3072
+ blockquote: BlockquoteHTMLAttributes<HTMLQuoteElement>;
3073
+ /**
3074
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/body
3075
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBodyElement
3076
+ */
3077
+ body: HTMLAttributes<HTMLBodyElement>;
3078
+ /**
3079
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/br
3080
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLBRElement
3081
+ */
3082
+ br: HTMLAttributes<HTMLBRElement>;
3083
+ /**
3084
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button
3085
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLButtonElement
3086
+ */
3087
+ button: ButtonHTMLAttributes<HTMLButtonElement>;
3088
+ /**
3089
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/canvas
3090
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement
3091
+ */
3092
+ canvas: CanvasHTMLAttributes<HTMLCanvasElement>;
3093
+ /**
3094
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/caption
3095
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCaptionElement
3096
+ */
3097
+ caption: HTMLAttributes<HTMLTableCaptionElement>;
3098
+ /**
3099
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/cite
3100
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3101
+ */
3102
+ cite: HTMLAttributes<HTMLElement>;
3103
+ /**
3104
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/code
3105
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3106
+ */
3107
+ code: HTMLAttributes<HTMLElement>;
3108
+ /**
3109
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col
3110
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableColElement
3111
+ */
3112
+ col: ColHTMLAttributes<HTMLTableColElement>;
3113
+ /**
3114
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup
3115
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableColElement
3116
+ */
3117
+ colgroup: ColgroupHTMLAttributes<HTMLTableColElement>;
3118
+ /**
3119
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/data
3120
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDataElement
3121
+ */
3122
+ data: DataHTMLAttributes<HTMLDataElement>;
3123
+ /**
3124
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist
3125
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDataListElement
3126
+ */
3127
+ datalist: HTMLAttributes<HTMLDataListElement>;
3128
+ /**
3129
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dd
3130
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3131
+ */
3132
+ dd: HTMLAttributes<HTMLElement>;
3133
+ /**
3134
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/del
3135
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLModElement
3136
+ */
3137
+ del: ModHTMLAttributes<HTMLModElement>;
3138
+ /**
3139
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details
3140
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDetailsElement
3141
+ */
3142
+ details: DetailsHtmlAttributes<HTMLDetailsElement>;
3143
+ /**
3144
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dfn
3145
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3146
+ */
3147
+ dfn: HTMLAttributes<HTMLElement>;
3148
+ /**
3149
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dialog
3150
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDialogElement
3151
+ */
3152
+ dialog: DialogHtmlAttributes<HTMLDialogElement>;
3153
+ /**
3154
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/div
3155
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDivElement
3156
+ */
3157
+ div: HTMLAttributes<HTMLDivElement>;
3158
+ /**
3159
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dl
3160
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLDListElement
3161
+ */
3162
+ dl: HTMLAttributes<HTMLDListElement>;
3163
+ /**
3164
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dt
3165
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3166
+ */
3167
+ dt: HTMLAttributes<HTMLElement>;
3168
+ /**
3169
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/em
3170
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3171
+ */
3172
+ em: HTMLAttributes<HTMLElement>;
3173
+ /**
3174
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/embed
3175
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLEmbedElement
3176
+ */
3177
+ embed: EmbedHTMLAttributes<HTMLEmbedElement>;
3178
+ /**
3179
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset
3180
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLFieldSetElement
3181
+ */
3182
+ fieldset: FieldsetHTMLAttributes<HTMLFieldSetElement>;
3183
+ /**
3184
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figcaption
3185
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3186
+ */
3187
+ figcaption: HTMLAttributes<HTMLElement>;
3188
+ /**
3189
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figure
3190
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3191
+ */
3192
+ figure: HTMLAttributes<HTMLElement>;
3193
+ /**
3194
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/footer
3195
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3196
+ */
3197
+ footer: HTMLAttributes<HTMLElement>;
3198
+ /**
3199
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form
3200
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLFormElement
3201
+ */
3202
+ form: FormHTMLAttributes<HTMLFormElement>;
3203
+ /**
3204
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h1
3205
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3206
+ */
3207
+ h1: HTMLAttributes<HTMLHeadingElement>;
3208
+ /**
3209
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h2
3210
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3211
+ */
3212
+ h2: HTMLAttributes<HTMLHeadingElement>;
3213
+ /**
3214
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h3
3215
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3216
+ */
3217
+ h3: HTMLAttributes<HTMLHeadingElement>;
3218
+ /**
3219
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h4
3220
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3221
+ */
3222
+ h4: HTMLAttributes<HTMLHeadingElement>;
3223
+ /**
3224
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h5
3225
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3226
+ */
3227
+ h5: HTMLAttributes<HTMLHeadingElement>;
3228
+ /**
3229
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h6
3230
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadingElement
3231
+ */
3232
+ h6: HTMLAttributes<HTMLHeadingElement>;
3233
+ /**
3234
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/head
3235
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHeadElement
3236
+ */
3237
+ head: HTMLAttributes<HTMLHeadElement>;
3238
+ /**
3239
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/header
3240
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3241
+ */
3242
+ header: HTMLAttributes<HTMLElement>;
3243
+ /**
3244
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hgroup
3245
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3246
+ */
3247
+ hgroup: HTMLAttributes<HTMLElement>;
3248
+ /**
3249
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hr
3250
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHRElement
3251
+ */
3252
+ hr: HTMLAttributes<HTMLHRElement>;
3253
+ /**
3254
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/html
3255
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLHtmlElement
3256
+ */
3257
+ html: HTMLAttributes<HTMLHtmlElement>;
3258
+ /**
3259
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/i
3260
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3261
+ */
3262
+ i: HTMLAttributes<HTMLElement>;
3263
+ /**
3264
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe
3265
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLIFrameElement
3266
+ */
3267
+ iframe: IframeHTMLAttributes<HTMLIFrameElement>;
3268
+ /**
3269
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img
3270
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLImageElement
3271
+ */
3272
+ img: ImgHTMLAttributes<HTMLImageElement>;
3273
+ /**
3274
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input
3275
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLInputElement
3276
+ */
3277
+ input: InputHTMLAttributes<HTMLInputElement>;
3278
+ /**
3279
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ins
3280
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLModElement
3281
+ */
3282
+ ins: ModHTMLAttributes<HTMLModElement>;
3283
+ /**
3284
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/kbd
3285
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3286
+ */
3287
+ kbd: HTMLAttributes<HTMLElement>;
3288
+ /**
3289
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label
3290
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLabelElement
3291
+ */
3292
+ label: LabelHTMLAttributes<HTMLLabelElement>;
3293
+ /**
3294
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/legend
3295
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLegendElement
3296
+ */
3297
+ legend: HTMLAttributes<HTMLLegendElement>;
3298
+ /**
3299
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/li
3300
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLIElement
3301
+ */
3302
+ li: LiHTMLAttributes<HTMLLIElement>;
3303
+ /**
3304
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link
3305
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLLinkElement
3306
+ */
3307
+ link: LinkHTMLAttributes<HTMLLinkElement>;
3308
+ /**
3309
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/main
3310
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3311
+ */
3312
+ main: HTMLAttributes<HTMLElement>;
3313
+ /**
3314
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/map
3315
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMapElement
3316
+ */
3317
+ map: MapHTMLAttributes<HTMLMapElement>;
3318
+ /**
3319
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/mark
3320
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3321
+ */
3322
+ mark: HTMLAttributes<HTMLElement>;
3323
+ /**
3324
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/menu
3325
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMenuElement
3326
+ */
3327
+ menu: MenuHTMLAttributes<HTMLMenuElement>;
3328
+ /**
3329
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta
3330
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMetaElement
3331
+ */
3332
+ meta: MetaHTMLAttributes<HTMLMetaElement>;
3333
+ /**
3334
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meter
3335
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLMeterElement
3336
+ */
3337
+ meter: MeterHTMLAttributes<HTMLMeterElement>;
3338
+ /**
3339
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/nav
3340
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3341
+ */
3342
+ nav: HTMLAttributes<HTMLElement>;
3343
+ /**
3344
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/noscript
3345
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3346
+ */
3347
+ noscript: HTMLAttributes<HTMLElement>;
3348
+ /**
3349
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/object
3350
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLObjectElement
3351
+ */
3352
+ object: ObjectHTMLAttributes<HTMLObjectElement>;
3353
+ /**
3354
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol
3355
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOListElement
3356
+ */
3357
+ ol: OlHTMLAttributes<HTMLOListElement>;
3358
+ /**
3359
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/optgroup
3360
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptGroupElement
3361
+ */
3362
+ optgroup: OptgroupHTMLAttributes<HTMLOptGroupElement>;
3363
+ /**
3364
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option
3365
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOptionElement
3366
+ */
3367
+ option: OptionHTMLAttributes<HTMLOptionElement>;
3368
+ /**
3369
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/output
3370
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLOutputElement
3371
+ */
3372
+ output: OutputHTMLAttributes<HTMLOutputElement>;
3373
+ /**
3374
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/p
3375
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLParagraphElement
3376
+ */
3377
+ p: HTMLAttributes<HTMLParagraphElement>;
3378
+ /**
3379
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/picture
3380
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLPictureElement
3381
+ */
3382
+ picture: HTMLAttributes<HTMLPictureElement>;
3383
+ /**
3384
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/pre
3385
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLPreElement
3386
+ */
3387
+ pre: HTMLAttributes<HTMLPreElement>;
3388
+ /**
3389
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress
3390
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLProgressElement
3391
+ */
3392
+ progress: ProgressHTMLAttributes<HTMLProgressElement>;
3393
+ /**
3394
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/q
3395
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLQuoteElement
3396
+ */
3397
+ q: QuoteHTMLAttributes<HTMLQuoteElement>;
3398
+ /**
3399
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rp
3400
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3401
+ */
3402
+ rp: HTMLAttributes<HTMLElement>;
3403
+ /**
3404
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rt
3405
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3406
+ */
3407
+ rt: HTMLAttributes<HTMLElement>;
3408
+ /**
3409
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ruby
3410
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3411
+ */
3412
+ ruby: HTMLAttributes<HTMLElement>;
3413
+ /**
3414
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/s
3415
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3416
+ */
3417
+ s: HTMLAttributes<HTMLElement>;
3418
+ /**
3419
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/samp
3420
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3421
+ */
3422
+ samp: HTMLAttributes<HTMLElement>;
3423
+ /**
3424
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script
3425
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLScriptElement
3426
+ */
3427
+ script: ScriptHTMLAttributes<HTMLScriptElement>;
3428
+ /**
3429
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/search
3430
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3431
+ */
3432
+ search: HTMLAttributes<HTMLElement>;
3433
+ /**
3434
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/section
3435
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3436
+ */
3437
+ section: HTMLAttributes<HTMLElement>;
3438
+ /**
3439
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select
3440
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSelectElement
3441
+ */
3442
+ select: SelectHTMLAttributes<HTMLSelectElement>;
3443
+ /**
3444
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/slot
3445
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSlotElement
3446
+ */
3447
+ slot: HTMLSlotElementAttributes<HTMLSlotElement>;
3448
+ /**
3449
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/small
3450
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3451
+ */
3452
+ small: HTMLAttributes<HTMLElement>;
3453
+ /**
3454
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/source
3455
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSourceElement
3456
+ */
3457
+ source: SourceHTMLAttributes<HTMLSourceElement>;
3458
+ /**
3459
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/span
3460
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLSpanElement
3461
+ */
3462
+ span: HTMLAttributes<HTMLSpanElement>;
3463
+ /**
3464
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/strong
3465
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3466
+ */
3467
+ strong: HTMLAttributes<HTMLElement>;
3468
+ /**
3469
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/style
3470
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLStyleElement
3471
+ */
3472
+ style: StyleHTMLAttributes<HTMLStyleElement>;
3473
+ /**
3474
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sub
3475
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3476
+ */
3477
+ sub: HTMLAttributes<HTMLElement>;
3478
+ /**
3479
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/summary
3480
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3481
+ */
3482
+ summary: HTMLAttributes<HTMLElement>;
3483
+ /**
3484
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sup
3485
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3486
+ */
3487
+ sup: HTMLAttributes<HTMLElement>;
3488
+ /**
3489
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table
3490
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableElement
3491
+ */
3492
+ table: HTMLAttributes<HTMLTableElement>;
3493
+ /**
3494
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tbody
3495
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
3496
+ */
3497
+ tbody: HTMLAttributes<HTMLTableSectionElement>;
3498
+ /**
3499
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td
3500
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement
3501
+ */
3502
+ td: TdHTMLAttributes<HTMLTableCellElement>;
3503
+ /**
3504
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/template
3505
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTemplateElement
3506
+ */
3507
+ template: TemplateHTMLAttributes<HTMLTemplateElement>;
3508
+ /**
3509
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea
3510
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTextAreaElement
3511
+ */
3512
+ textarea: TextareaHTMLAttributes<HTMLTextAreaElement>;
3513
+ /**
3514
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tfoot
3515
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
3516
+ */
3517
+ tfoot: HTMLAttributes<HTMLTableSectionElement>;
3518
+ /**
3519
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th
3520
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableCellElement
3521
+ */
3522
+ th: ThHTMLAttributes<HTMLTableCellElement>;
3523
+ /**
3524
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/thead
3525
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableSectionElement
3526
+ */
3527
+ thead: HTMLAttributes<HTMLTableSectionElement>;
3528
+ /**
3529
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/time
3530
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTimeElement
3531
+ */
3532
+ time: TimeHTMLAttributes<HTMLTimeElement>;
3533
+ /**
3534
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title
3535
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTitleElement
3536
+ */
3537
+ title: HTMLAttributes<HTMLTitleElement>;
3538
+ /**
3539
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tr
3540
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTableRowElement
3541
+ */
3542
+ tr: HTMLAttributes<HTMLTableRowElement>;
3543
+ /**
3544
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/track
3545
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLTrackElement
3546
+ */
3547
+ track: TrackHTMLAttributes<HTMLTrackElement>;
3548
+ /**
3549
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/u
3550
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3551
+ */
3552
+ u: HTMLAttributes<HTMLElement>;
3553
+ /**
3554
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ul
3555
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUListElement
3556
+ */
3557
+ ul: HTMLAttributes<HTMLUListElement>;
3558
+ /**
3559
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/var
3560
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3561
+ */
3562
+ var: HTMLAttributes<HTMLElement>;
3563
+ /**
3564
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video
3565
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLVideoElement
3566
+ */
3567
+ video: VideoHTMLAttributes<HTMLVideoElement>;
3568
+ /**
3569
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/wbr
3570
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3571
+ */
3572
+ wbr: HTMLAttributes<HTMLElement>;
3573
+ /** @url https://www.electronjs.org/docs/latest/api/webview-tag */
3574
+ webview: WebViewHTMLAttributes<HTMLElement>;
3575
+ }
3576
+ /** @type {HTMLElementDeprecatedTagNameMap} */
3577
+ interface HTMLElementDeprecatedTags {
3578
+ /**
3579
+ * @deprecated
3580
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/big
3581
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement
3582
+ */
3583
+ big: HTMLAttributes<HTMLElement>;
3584
+ /**
3585
+ * @deprecated
3586
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/keygen
3587
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUnknownElement
3588
+ */
3589
+ keygen: KeygenHTMLAttributes<HTMLUnknownElement>;
3590
+ /**
3591
+ * @deprecated
3592
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/menuitem
3593
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUnknownElement
3594
+ */
3595
+ menuitem: HTMLAttributes<HTMLUnknownElement>;
3596
+ /**
3597
+ * @deprecated
3598
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/xxxxx
3599
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLUnknownElement
3600
+ */
3601
+ noindex: HTMLAttributes<HTMLUnknownElement>;
3602
+ /**
3603
+ * @deprecated
3604
+ * @url https://developer.mozilla.org/en-US/docs/Web/HTML/Element/param
3605
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/HTMLParamElement
3606
+ */
3607
+ param: ParamHTMLAttributes<HTMLParamElement>;
3608
+ }
3609
+ /** @type {SVGElementTagNameMap} */
3610
+ interface SVGElementTags {
3611
+ /**
3612
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animate
3613
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateElement
3614
+ */
3615
+ animate: AnimateSVGAttributes<SVGAnimateElement>;
3616
+ /**
3617
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateMotion
3618
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateMotionElement
3619
+ */
3620
+ animateMotion: AnimateMotionSVGAttributes<SVGAnimateMotionElement>;
3621
+ /**
3622
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateTransform
3623
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGAnimateTransformElement
3624
+ */
3625
+ animateTransform: AnimateTransformSVGAttributes<SVGAnimateTransformElement>;
3626
+ /**
3627
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/circle
3628
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGCircleElement
3629
+ */
3630
+ circle: CircleSVGAttributes<SVGCircleElement>;
3631
+ /**
3632
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/clipPath
3633
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGClipPathElement
3634
+ */
3635
+ clipPath: ClipPathSVGAttributes<SVGClipPathElement>;
3636
+ /**
3637
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/defs
3638
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGDefsElement
3639
+ */
3640
+ defs: DefsSVGAttributes<SVGDefsElement>;
3641
+ /**
3642
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/desc
3643
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGDescElement
3644
+ */
3645
+ desc: DescSVGAttributes<SVGDescElement>;
3646
+ /**
3647
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/ellipse
3648
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGEllipseElement
3649
+ */
3650
+ ellipse: EllipseSVGAttributes<SVGEllipseElement>;
3651
+ /**
3652
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feBlend
3653
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEBlendElement
3654
+ */
3655
+ feBlend: FeBlendSVGAttributes<SVGFEBlendElement>;
3656
+ /**
3657
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feColorMatrix
3658
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEColorMatrixElement
3659
+ */
3660
+ feColorMatrix: FeColorMatrixSVGAttributes<SVGFEColorMatrixElement>;
3661
+ /**
3662
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feComponentTransfer
3663
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEComponentTransferElemen
3664
+ */
3665
+ feComponentTransfer: FeComponentTransferSVGAttributes<SVGFEComponentTransferElement>;
3666
+ /**
3667
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feComposite
3668
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFECompositeElement
3669
+ */
3670
+ feComposite: FeCompositeSVGAttributes<SVGFECompositeElement>;
3671
+ /**
3672
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feConvolveMatrix
3673
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEConvolveMatrixElement
3674
+ */
3675
+ feConvolveMatrix: FeConvolveMatrixSVGAttributes<SVGFEConvolveMatrixElement>;
3676
+ /**
3677
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDiffuseLighting
3678
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDiffuseLightingElement
3679
+ */
3680
+ feDiffuseLighting: FeDiffuseLightingSVGAttributes<SVGFEDiffuseLightingElement>;
3681
+ /**
3682
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDisplacementMap
3683
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDisplacementMapElement
3684
+ */
3685
+ feDisplacementMap: FeDisplacementMapSVGAttributes<SVGFEDisplacementMapElement>;
3686
+ /**
3687
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDistantLight
3688
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDistantLightElement
3689
+ */
3690
+ feDistantLight: FeDistantLightSVGAttributes<SVGFEDistantLightElement>;
3691
+ /**
3692
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDropShadow
3693
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEDropShadowElement
3694
+ */
3695
+ feDropShadow: FeDropShadowSVGAttributes<SVGFEDropShadowElement>;
3696
+ /**
3697
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFlood
3698
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFloodElement
3699
+ */
3700
+ feFlood: FeFloodSVGAttributes<SVGFEFloodElement>;
3701
+ /**
3702
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncA
3703
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncAElement
3704
+ */
3705
+ feFuncA: FeFuncSVGAttributes<SVGFEFuncAElement>;
3706
+ /**
3707
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncB
3708
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncBElement
3709
+ */
3710
+ feFuncB: FeFuncSVGAttributes<SVGFEFuncBElement>;
3711
+ /**
3712
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncG
3713
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncGElement
3714
+ */
3715
+ feFuncG: FeFuncSVGAttributes<SVGFEFuncGElement>;
3716
+ /**
3717
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncR
3718
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEFuncRElement
3719
+ */
3720
+ feFuncR: FeFuncSVGAttributes<SVGFEFuncRElement>;
3721
+ /**
3722
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feGaussianBlur
3723
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEGaussianBlurElement
3724
+ */
3725
+ feGaussianBlur: FeGaussianBlurSVGAttributes<SVGFEGaussianBlurElement>;
3726
+ /**
3727
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feImage
3728
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEImageElement
3729
+ */
3730
+ feImage: FeImageSVGAttributes<SVGFEImageElement>;
3731
+ /**
3732
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMerge
3733
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeElement
3734
+ */
3735
+ feMerge: FeMergeSVGAttributes<SVGFEMergeElement>;
3736
+ /**
3737
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMergeNode
3738
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeNodeElement
3739
+ */
3740
+ feMergeNode: FeMergeNodeSVGAttributes<SVGFEMergeNodeElement>;
3741
+ /**
3742
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMorphology
3743
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMorphologyElement
3744
+ */
3745
+ feMorphology: FeMorphologySVGAttributes<SVGFEMorphologyElement>;
3746
+ /**
3747
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feOffset
3748
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEOffsetElement
3749
+ */
3750
+ feOffset: FeOffsetSVGAttributes<SVGFEOffsetElement>;
3751
+ /**
3752
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/fePointLight
3753
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFEPointLightElement
3754
+ */
3755
+ fePointLight: FePointLightSVGAttributes<SVGFEPointLightElement>;
3756
+ /**
3757
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feSpecularLighting
3758
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFESpecularLightingElement
3759
+ */
3760
+ feSpecularLighting: FeSpecularLightingSVGAttributes<SVGFESpecularLightingElement>;
3761
+ /**
3762
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feSpotLight
3763
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFESpotLightElement
3764
+ */
3765
+ feSpotLight: FeSpotLightSVGAttributes<SVGFESpotLightElement>;
3766
+ /**
3767
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feTile
3768
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFETileElement
3769
+ */
3770
+ feTile: FeTileSVGAttributes<SVGFETileElement>;
3771
+ /**
3772
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feTurbulence
3773
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFETurbulenceElement
3774
+ */
3775
+ feTurbulence: FeTurbulanceSVGAttributes<SVGFETurbulenceElement>;
3776
+ /**
3777
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/filter
3778
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGFilterElement
3779
+ */
3780
+ filter: FilterSVGAttributes<SVGFilterElement>;
3781
+ /**
3782
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/foreignObject
3783
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGForeignObjectElement
3784
+ */
3785
+ foreignObject: ForeignObjectSVGAttributes<SVGForeignObjectElement>;
3786
+ /**
3787
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/g
3788
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGGElement
3789
+ */
3790
+ g: GSVGAttributes<SVGGElement>;
3791
+ /**
3792
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/image
3793
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGImageElement
3794
+ */
3795
+ image: ImageSVGAttributes<SVGImageElement>;
3796
+ /**
3797
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/line
3798
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGLineElement
3799
+ */
3800
+ line: LineSVGAttributes<SVGLineElement>;
3801
+ /**
3802
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/linearGradient
3803
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGLinearGradientElement
3804
+ */
3805
+ linearGradient: LinearGradientSVGAttributes<SVGLinearGradientElement>;
3806
+ /**
3807
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/marker
3808
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMarkerElement
3809
+ */
3810
+ marker: MarkerSVGAttributes<SVGMarkerElement>;
3811
+ /**
3812
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/mask
3813
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMaskElement
3814
+ */
3815
+ mask: MaskSVGAttributes<SVGMaskElement>;
3816
+ /**
3817
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/metadata
3818
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMetadataElement
3819
+ */
3820
+ metadata: MetadataSVGAttributes<SVGMetadataElement>;
3821
+ /**
3822
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/mpath
3823
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGMPathElement
3824
+ */
3825
+ mpath: MPathSVGAttributes<SVGMPathElement>;
3826
+ /**
3827
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/path
3828
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPathElement
3829
+ */
3830
+ path: PathSVGAttributes<SVGPathElement>;
3831
+ /**
3832
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/pattern
3833
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPatternElement
3834
+ */
3835
+ pattern: PatternSVGAttributes<SVGPatternElement>;
3836
+ /**
3837
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/polygon
3838
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPolygonElement
3839
+ */
3840
+ polygon: PolygonSVGAttributes<SVGPolygonElement>;
3841
+ /**
3842
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/polyline
3843
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGPolylineElement
3844
+ */
3845
+ polyline: PolylineSVGAttributes<SVGPolylineElement>;
3846
+ /**
3847
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/radialGradient
3848
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGRadialGradientElement
3849
+ */
3850
+ radialGradient: RadialGradientSVGAttributes<SVGRadialGradientElement>;
3851
+ /**
3852
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/rect
3853
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGRectElement
3854
+ */
3855
+ rect: RectSVGAttributes<SVGRectElement>;
3856
+ /**
3857
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/set
3858
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSetElement
3859
+ */
3860
+ set: SetSVGAttributes<SVGSetElement>;
3861
+ /**
3862
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/stop
3863
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGStopElement
3864
+ */
3865
+ stop: StopSVGAttributes<SVGStopElement>;
3866
+ /**
3867
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/svg
3868
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSVGElement
3869
+ */
3870
+ svg: SvgSVGAttributes<SVGSVGElement>;
3871
+ /**
3872
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/switch
3873
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSwitchElement
3874
+ */
3875
+ switch: SwitchSVGAttributes<SVGSwitchElement>;
3876
+ /**
3877
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/symbol
3878
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGSymbolElement
3879
+ */
3880
+ symbol: SymbolSVGAttributes<SVGSymbolElement>;
3881
+ /**
3882
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/text
3883
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTextElement
3884
+ */
3885
+ text: TextSVGAttributes<SVGTextElement>;
3886
+ /**
3887
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/textPath
3888
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTextPathElement
3889
+ */
3890
+ textPath: TextPathSVGAttributes<SVGTextPathElement>;
3891
+ /**
3892
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/tspan
3893
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGTSpanElement
3894
+ */
3895
+ tspan: TSpanSVGAttributes<SVGTSpanElement>;
3896
+ /**
3897
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/use
3898
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGUseElement
3899
+ */
3900
+ use: UseSVGAttributes<SVGUseElement>;
3901
+ /**
3902
+ * @url https://developer.mozilla.org/en-US/docs/Web/SVG/Element/view
3903
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/SVGViewElement
3904
+ */
3905
+ view: ViewSVGAttributes<SVGViewElement>;
3906
+ }
3907
+
3908
+ interface MathMLElementTags {
3909
+ /**
3910
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/annotation
3911
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
3912
+ */
3913
+ annotation: MathMLAnnotationElementAttributes<MathMLElement>;
3914
+ /**
3915
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/annotation-xml
3916
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
3917
+ */
3918
+ "annotation-xml": MathMLAnnotationXmlElementAttributes<MathMLElement>;
3919
+ /**
3920
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/math
3921
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
3922
+ */
3923
+ math: MathMLMathElementAttributes<MathMLElement>;
3924
+ /**
3925
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/merror
3926
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
3927
+ */
3928
+ merror: MathMLMerrorElementAttributes<MathMLElement>;
3929
+ /**
3930
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mfrac
3931
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
3932
+ */
3933
+ mfrac: MathMLMfracElementAttributes<MathMLElement>;
3934
+ /**
3935
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mi
3936
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
3937
+ */
3938
+ mi: MathMLMiElementAttributes<MathMLElement>;
3939
+ /**
3940
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mmultiscripts
3941
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
3942
+ */
3943
+ mmultiscripts: MathMLMmultiscriptsElementAttributes<MathMLElement>;
3944
+ /**
3945
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mn
3946
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
3947
+ */
3948
+ mn: MathMLMnElementAttributes<MathMLElement>;
3949
+ /**
3950
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mo
3951
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
3952
+ */
3953
+ mo: MathMLMoElementAttributes<MathMLElement>;
3954
+ /**
3955
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mover
3956
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
3957
+ */
3958
+ mover: MathMLMoverElementAttributes<MathMLElement>;
3959
+ /**
3960
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mpadded
3961
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
3962
+ */
3963
+ mpadded: MathMLMpaddedElementAttributes<MathMLElement>;
3964
+ /**
3965
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mphantom
3966
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
3967
+ */
3968
+ mphantom: MathMLMphantomElementAttributes<MathMLElement>;
3969
+ /**
3970
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mprescripts
3971
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
3972
+ */
3973
+ mprescripts: MathMLMprescriptsElementAttributes<MathMLElement>;
3974
+ /**
3975
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mroot
3976
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
3977
+ */
3978
+ mroot: MathMLMrootElementAttributes<MathMLElement>;
3979
+ /**
3980
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mrow
3981
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
3982
+ */
3983
+ mrow: MathMLMrowElementAttributes<MathMLElement>;
3984
+ /**
3985
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/ms
3986
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
3987
+ */
3988
+ ms: MathMLMsElementAttributes<MathMLElement>;
3989
+ /**
3990
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mspace
3991
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
3992
+ */
3993
+ mspace: MathMLMspaceElementAttributes<MathMLElement>;
3994
+ /**
3995
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msqrt
3996
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
3997
+ */
3998
+ msqrt: MathMLMsqrtElementAttributes<MathMLElement>;
3999
+ /**
4000
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mstyle
4001
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4002
+ */
4003
+ mstyle: MathMLMstyleElementAttributes<MathMLElement>;
4004
+ /**
4005
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msub
4006
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4007
+ */
4008
+ msub: MathMLMsubElementAttributes<MathMLElement>;
4009
+ /**
4010
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msubsup
4011
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4012
+ */
4013
+ msubsup: MathMLMsubsupElementAttributes<MathMLElement>;
4014
+ /**
4015
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/msup
4016
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4017
+ */
4018
+ msup: MathMLMsupElementAttributes<MathMLElement>;
4019
+ /**
4020
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtable
4021
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4022
+ */
4023
+ mtable: MathMLMtableElementAttributes<MathMLElement>;
4024
+ /**
4025
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtd
4026
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4027
+ */
4028
+ mtd: MathMLMtdElementAttributes<MathMLElement>;
4029
+ /**
4030
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtext
4031
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4032
+ */
4033
+ mtext: MathMLMtextElementAttributes<MathMLElement>;
4034
+ /**
4035
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mtr
4036
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4037
+ */
4038
+ mtr: MathMLMtrElementAttributes<MathMLElement>;
4039
+ /**
4040
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/munder
4041
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4042
+ */
4043
+ munder: MathMLMunderElementAttributes<MathMLElement>;
4044
+ /**
4045
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/munderover
4046
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4047
+ */
4048
+ munderover: MathMLMunderoverElementAttributes<MathMLElement>;
4049
+ /**
4050
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/semantics
4051
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4052
+ */
4053
+ semantics: MathMLSemanticsElementAttributes<MathMLElement>;
4054
+ /**
4055
+ * @non-standard
4056
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/menclose
4057
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4058
+ */
4059
+ menclose: MathMLMencloseElementAttributes<MathMLElement>;
4060
+ /**
4061
+ * @deprecated
4062
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/maction
4063
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4064
+ */
4065
+ maction: MathMLMactionElementAttributes<MathMLElement>;
4066
+ /**
4067
+ * @deprecated
4068
+ * @non-standard
4069
+ * @url https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mfenced
4070
+ * @url https://developer.mozilla.org/en-US/docs/Web/API/MathMLElement
4071
+ */
4072
+ mfenced: MathMLMfencedElementAttributes<MathMLElement>;
4073
+ }
4074
+
4075
+ interface IntrinsicElements
4076
+ extends HTMLElementTags,
4077
+ HTMLElementDeprecatedTags,
4078
+ SVGElementTags,
4079
+ MathMLElementTags {}
4080
+ }