@solidjs/web 2.0.0-beta.2 → 2.0.0-beta.20

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