@solidjs/web 2.0.0-experimental.9 → 2.0.0-rc.1

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