@glint/template 1.4.1-unstable.bb2c7cd → 1.4.1-unstable.c6fbad4
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.
- package/-private/dsl/elements.d.ts +4265 -4264
- package/-private/dsl/lib.dom.augmentation.d.ts +130 -1
- package/package.json +1 -1
|
@@ -1,508 +1,637 @@
|
|
|
1
1
|
//generated by scrips/build-augmentations.mjs
|
|
2
|
+
// this serves to provide a UNIQUE mapping for HtmlElementType -> Html Element Name -> Html Element Attributes
|
|
3
|
+
// typesript file lib.dom.d.ts already has e.g. HTMLElementTagNameMap,
|
|
4
|
+
// but it does not provide unique types for each element
|
|
2
5
|
export const GlintSymbol: unique symbol = Symbol();
|
|
3
6
|
|
|
4
7
|
declare global {
|
|
8
|
+
|
|
5
9
|
interface HTMLAnchorElement {
|
|
6
10
|
[GlintSymbol]: 'HTMLAnchorElement';
|
|
7
11
|
}
|
|
8
12
|
|
|
13
|
+
|
|
9
14
|
interface HTMLElement {
|
|
10
15
|
[GlintSymbol]: 'HTMLElement';
|
|
11
16
|
}
|
|
12
17
|
|
|
18
|
+
|
|
13
19
|
interface HTMLAreaElement {
|
|
14
20
|
[GlintSymbol]: 'HTMLAreaElement';
|
|
15
21
|
}
|
|
16
22
|
|
|
23
|
+
|
|
17
24
|
interface HTMLAudioElement {
|
|
18
25
|
[GlintSymbol]: 'HTMLAudioElement';
|
|
19
26
|
}
|
|
20
27
|
|
|
28
|
+
|
|
21
29
|
interface HTMLBaseElement {
|
|
22
30
|
[GlintSymbol]: 'HTMLBaseElement';
|
|
23
31
|
}
|
|
24
32
|
|
|
33
|
+
|
|
25
34
|
interface HTMLQuoteElement {
|
|
26
35
|
[GlintSymbol]: 'HTMLQuoteElement';
|
|
27
36
|
}
|
|
28
37
|
|
|
38
|
+
|
|
29
39
|
interface HTMLBodyElement {
|
|
30
40
|
[GlintSymbol]: 'HTMLBodyElement';
|
|
31
41
|
}
|
|
32
42
|
|
|
43
|
+
|
|
33
44
|
interface HTMLBRElement {
|
|
34
45
|
[GlintSymbol]: 'HTMLBRElement';
|
|
35
46
|
}
|
|
36
47
|
|
|
48
|
+
|
|
37
49
|
interface HTMLButtonElement {
|
|
38
50
|
[GlintSymbol]: 'HTMLButtonElement';
|
|
39
51
|
}
|
|
40
52
|
|
|
53
|
+
|
|
41
54
|
interface HTMLCanvasElement {
|
|
42
55
|
[GlintSymbol]: 'HTMLCanvasElement';
|
|
43
56
|
}
|
|
44
57
|
|
|
58
|
+
|
|
45
59
|
interface HTMLTableCaptionElement {
|
|
46
60
|
[GlintSymbol]: 'HTMLTableCaptionElement';
|
|
47
61
|
}
|
|
48
62
|
|
|
63
|
+
|
|
49
64
|
interface HTMLTableColElement {
|
|
50
65
|
[GlintSymbol]: 'HTMLTableColElement';
|
|
51
66
|
}
|
|
52
67
|
|
|
68
|
+
|
|
53
69
|
interface HTMLDataElement {
|
|
54
70
|
[GlintSymbol]: 'HTMLDataElement';
|
|
55
71
|
}
|
|
56
72
|
|
|
73
|
+
|
|
57
74
|
interface HTMLDataListElement {
|
|
58
75
|
[GlintSymbol]: 'HTMLDataListElement';
|
|
59
76
|
}
|
|
60
77
|
|
|
78
|
+
|
|
61
79
|
interface HTMLModElement {
|
|
62
80
|
[GlintSymbol]: 'HTMLModElement';
|
|
63
81
|
}
|
|
64
82
|
|
|
83
|
+
|
|
65
84
|
interface HTMLDetailsElement {
|
|
66
85
|
[GlintSymbol]: 'HTMLDetailsElement';
|
|
67
86
|
}
|
|
68
87
|
|
|
88
|
+
|
|
69
89
|
interface HTMLDialogElement {
|
|
70
90
|
[GlintSymbol]: 'HTMLDialogElement';
|
|
71
91
|
}
|
|
72
92
|
|
|
93
|
+
|
|
73
94
|
interface HTMLDivElement {
|
|
74
95
|
[GlintSymbol]: 'HTMLDivElement';
|
|
75
96
|
}
|
|
76
97
|
|
|
98
|
+
|
|
77
99
|
interface HTMLDListElement {
|
|
78
100
|
[GlintSymbol]: 'HTMLDListElement';
|
|
79
101
|
}
|
|
80
102
|
|
|
103
|
+
|
|
81
104
|
interface HTMLEmbedElement {
|
|
82
105
|
[GlintSymbol]: 'HTMLEmbedElement';
|
|
83
106
|
}
|
|
84
107
|
|
|
108
|
+
|
|
85
109
|
interface HTMLFieldSetElement {
|
|
86
110
|
[GlintSymbol]: 'HTMLFieldSetElement';
|
|
87
111
|
}
|
|
88
112
|
|
|
113
|
+
|
|
89
114
|
interface HTMLFormElement {
|
|
90
115
|
[GlintSymbol]: 'HTMLFormElement';
|
|
91
116
|
}
|
|
92
117
|
|
|
118
|
+
|
|
93
119
|
interface HTMLHeadingElement {
|
|
94
120
|
[GlintSymbol]: 'HTMLHeadingElement';
|
|
95
121
|
}
|
|
96
122
|
|
|
123
|
+
|
|
97
124
|
interface HTMLHeadElement {
|
|
98
125
|
[GlintSymbol]: 'HTMLHeadElement';
|
|
99
126
|
}
|
|
100
127
|
|
|
128
|
+
|
|
101
129
|
interface HTMLHRElement {
|
|
102
130
|
[GlintSymbol]: 'HTMLHRElement';
|
|
103
131
|
}
|
|
104
132
|
|
|
133
|
+
|
|
105
134
|
interface HTMLHtmlElement {
|
|
106
135
|
[GlintSymbol]: 'HTMLHtmlElement';
|
|
107
136
|
}
|
|
108
137
|
|
|
138
|
+
|
|
109
139
|
interface HTMLIFrameElement {
|
|
110
140
|
[GlintSymbol]: 'HTMLIFrameElement';
|
|
111
141
|
}
|
|
112
142
|
|
|
143
|
+
|
|
113
144
|
interface HTMLImageElement {
|
|
114
145
|
[GlintSymbol]: 'HTMLImageElement';
|
|
115
146
|
}
|
|
116
147
|
|
|
148
|
+
|
|
117
149
|
interface HTMLInputElement {
|
|
118
150
|
[GlintSymbol]: 'HTMLInputElement';
|
|
119
151
|
}
|
|
120
152
|
|
|
153
|
+
|
|
121
154
|
interface HTMLLabelElement {
|
|
122
155
|
[GlintSymbol]: 'HTMLLabelElement';
|
|
123
156
|
}
|
|
124
157
|
|
|
158
|
+
|
|
125
159
|
interface HTMLLegendElement {
|
|
126
160
|
[GlintSymbol]: 'HTMLLegendElement';
|
|
127
161
|
}
|
|
128
162
|
|
|
163
|
+
|
|
129
164
|
interface HTMLLIElement {
|
|
130
165
|
[GlintSymbol]: 'HTMLLIElement';
|
|
131
166
|
}
|
|
132
167
|
|
|
168
|
+
|
|
133
169
|
interface HTMLLinkElement {
|
|
134
170
|
[GlintSymbol]: 'HTMLLinkElement';
|
|
135
171
|
}
|
|
136
172
|
|
|
173
|
+
|
|
137
174
|
interface HTMLMapElement {
|
|
138
175
|
[GlintSymbol]: 'HTMLMapElement';
|
|
139
176
|
}
|
|
140
177
|
|
|
178
|
+
|
|
141
179
|
interface HTMLMenuElement {
|
|
142
180
|
[GlintSymbol]: 'HTMLMenuElement';
|
|
143
181
|
}
|
|
144
182
|
|
|
183
|
+
|
|
145
184
|
interface HTMLMetaElement {
|
|
146
185
|
[GlintSymbol]: 'HTMLMetaElement';
|
|
147
186
|
}
|
|
148
187
|
|
|
188
|
+
|
|
149
189
|
interface HTMLMeterElement {
|
|
150
190
|
[GlintSymbol]: 'HTMLMeterElement';
|
|
151
191
|
}
|
|
152
192
|
|
|
193
|
+
|
|
153
194
|
interface HTMLObjectElement {
|
|
154
195
|
[GlintSymbol]: 'HTMLObjectElement';
|
|
155
196
|
}
|
|
156
197
|
|
|
198
|
+
|
|
157
199
|
interface HTMLOListElement {
|
|
158
200
|
[GlintSymbol]: 'HTMLOListElement';
|
|
159
201
|
}
|
|
160
202
|
|
|
203
|
+
|
|
161
204
|
interface HTMLOptGroupElement {
|
|
162
205
|
[GlintSymbol]: 'HTMLOptGroupElement';
|
|
163
206
|
}
|
|
164
207
|
|
|
208
|
+
|
|
165
209
|
interface HTMLOptionElement {
|
|
166
210
|
[GlintSymbol]: 'HTMLOptionElement';
|
|
167
211
|
}
|
|
168
212
|
|
|
213
|
+
|
|
169
214
|
interface HTMLOutputElement {
|
|
170
215
|
[GlintSymbol]: 'HTMLOutputElement';
|
|
171
216
|
}
|
|
172
217
|
|
|
218
|
+
|
|
173
219
|
interface HTMLParagraphElement {
|
|
174
220
|
[GlintSymbol]: 'HTMLParagraphElement';
|
|
175
221
|
}
|
|
176
222
|
|
|
223
|
+
|
|
177
224
|
interface HTMLPictureElement {
|
|
178
225
|
[GlintSymbol]: 'HTMLPictureElement';
|
|
179
226
|
}
|
|
180
227
|
|
|
228
|
+
|
|
181
229
|
interface HTMLPreElement {
|
|
182
230
|
[GlintSymbol]: 'HTMLPreElement';
|
|
183
231
|
}
|
|
184
232
|
|
|
233
|
+
|
|
185
234
|
interface HTMLProgressElement {
|
|
186
235
|
[GlintSymbol]: 'HTMLProgressElement';
|
|
187
236
|
}
|
|
188
237
|
|
|
238
|
+
|
|
189
239
|
interface HTMLScriptElement {
|
|
190
240
|
[GlintSymbol]: 'HTMLScriptElement';
|
|
191
241
|
}
|
|
192
242
|
|
|
243
|
+
|
|
193
244
|
interface HTMLSelectElement {
|
|
194
245
|
[GlintSymbol]: 'HTMLSelectElement';
|
|
195
246
|
}
|
|
196
247
|
|
|
248
|
+
|
|
197
249
|
interface HTMLSlotElement {
|
|
198
250
|
[GlintSymbol]: 'HTMLSlotElement';
|
|
199
251
|
}
|
|
200
252
|
|
|
253
|
+
|
|
201
254
|
interface HTMLSourceElement {
|
|
202
255
|
[GlintSymbol]: 'HTMLSourceElement';
|
|
203
256
|
}
|
|
204
257
|
|
|
258
|
+
|
|
205
259
|
interface HTMLSpanElement {
|
|
206
260
|
[GlintSymbol]: 'HTMLSpanElement';
|
|
207
261
|
}
|
|
208
262
|
|
|
263
|
+
|
|
209
264
|
interface HTMLStyleElement {
|
|
210
265
|
[GlintSymbol]: 'HTMLStyleElement';
|
|
211
266
|
}
|
|
212
267
|
|
|
268
|
+
|
|
213
269
|
interface HTMLTableElement {
|
|
214
270
|
[GlintSymbol]: 'HTMLTableElement';
|
|
215
271
|
}
|
|
216
272
|
|
|
273
|
+
|
|
217
274
|
interface HTMLTableSectionElement {
|
|
218
275
|
[GlintSymbol]: 'HTMLTableSectionElement';
|
|
219
276
|
}
|
|
220
277
|
|
|
278
|
+
|
|
221
279
|
interface HTMLTableCellElement {
|
|
222
280
|
[GlintSymbol]: 'HTMLTableCellElement';
|
|
223
281
|
}
|
|
224
282
|
|
|
283
|
+
|
|
225
284
|
interface HTMLTemplateElement {
|
|
226
285
|
[GlintSymbol]: 'HTMLTemplateElement';
|
|
227
286
|
}
|
|
228
287
|
|
|
288
|
+
|
|
229
289
|
interface HTMLTextAreaElement {
|
|
230
290
|
[GlintSymbol]: 'HTMLTextAreaElement';
|
|
231
291
|
}
|
|
232
292
|
|
|
293
|
+
|
|
233
294
|
interface HTMLTimeElement {
|
|
234
295
|
[GlintSymbol]: 'HTMLTimeElement';
|
|
235
296
|
}
|
|
236
297
|
|
|
298
|
+
|
|
237
299
|
interface HTMLTitleElement {
|
|
238
300
|
[GlintSymbol]: 'HTMLTitleElement';
|
|
239
301
|
}
|
|
240
302
|
|
|
303
|
+
|
|
241
304
|
interface HTMLTableRowElement {
|
|
242
305
|
[GlintSymbol]: 'HTMLTableRowElement';
|
|
243
306
|
}
|
|
244
307
|
|
|
308
|
+
|
|
245
309
|
interface HTMLTrackElement {
|
|
246
310
|
[GlintSymbol]: 'HTMLTrackElement';
|
|
247
311
|
}
|
|
248
312
|
|
|
313
|
+
|
|
249
314
|
interface HTMLUListElement {
|
|
250
315
|
[GlintSymbol]: 'HTMLUListElement';
|
|
251
316
|
}
|
|
252
317
|
|
|
318
|
+
|
|
253
319
|
interface HTMLVideoElement {
|
|
254
320
|
[GlintSymbol]: 'HTMLVideoElement';
|
|
255
321
|
}
|
|
256
322
|
|
|
323
|
+
|
|
257
324
|
interface SVGAElement {
|
|
258
325
|
[GlintSymbol]: 'SVGAElement';
|
|
259
326
|
}
|
|
260
327
|
|
|
328
|
+
|
|
261
329
|
interface SVGAnimateElement {
|
|
262
330
|
[GlintSymbol]: 'SVGAnimateElement';
|
|
263
331
|
}
|
|
264
332
|
|
|
333
|
+
|
|
265
334
|
interface SVGAnimateMotionElement {
|
|
266
335
|
[GlintSymbol]: 'SVGAnimateMotionElement';
|
|
267
336
|
}
|
|
268
337
|
|
|
338
|
+
|
|
269
339
|
interface SVGAnimateTransformElement {
|
|
270
340
|
[GlintSymbol]: 'SVGAnimateTransformElement';
|
|
271
341
|
}
|
|
272
342
|
|
|
343
|
+
|
|
273
344
|
interface SVGCircleElement {
|
|
274
345
|
[GlintSymbol]: 'SVGCircleElement';
|
|
275
346
|
}
|
|
276
347
|
|
|
348
|
+
|
|
277
349
|
interface SVGClipPathElement {
|
|
278
350
|
[GlintSymbol]: 'SVGClipPathElement';
|
|
279
351
|
}
|
|
280
352
|
|
|
353
|
+
|
|
281
354
|
interface SVGDefsElement {
|
|
282
355
|
[GlintSymbol]: 'SVGDefsElement';
|
|
283
356
|
}
|
|
284
357
|
|
|
358
|
+
|
|
285
359
|
interface SVGDescElement {
|
|
286
360
|
[GlintSymbol]: 'SVGDescElement';
|
|
287
361
|
}
|
|
288
362
|
|
|
363
|
+
|
|
289
364
|
interface SVGEllipseElement {
|
|
290
365
|
[GlintSymbol]: 'SVGEllipseElement';
|
|
291
366
|
}
|
|
292
367
|
|
|
368
|
+
|
|
293
369
|
interface SVGFEBlendElement {
|
|
294
370
|
[GlintSymbol]: 'SVGFEBlendElement';
|
|
295
371
|
}
|
|
296
372
|
|
|
373
|
+
|
|
297
374
|
interface SVGFEColorMatrixElement {
|
|
298
375
|
[GlintSymbol]: 'SVGFEColorMatrixElement';
|
|
299
376
|
}
|
|
300
377
|
|
|
378
|
+
|
|
301
379
|
interface SVGFEComponentTransferElement {
|
|
302
380
|
[GlintSymbol]: 'SVGFEComponentTransferElement';
|
|
303
381
|
}
|
|
304
382
|
|
|
383
|
+
|
|
305
384
|
interface SVGFECompositeElement {
|
|
306
385
|
[GlintSymbol]: 'SVGFECompositeElement';
|
|
307
386
|
}
|
|
308
387
|
|
|
388
|
+
|
|
309
389
|
interface SVGFEConvolveMatrixElement {
|
|
310
390
|
[GlintSymbol]: 'SVGFEConvolveMatrixElement';
|
|
311
391
|
}
|
|
312
392
|
|
|
393
|
+
|
|
313
394
|
interface SVGFEDiffuseLightingElement {
|
|
314
395
|
[GlintSymbol]: 'SVGFEDiffuseLightingElement';
|
|
315
396
|
}
|
|
316
397
|
|
|
398
|
+
|
|
317
399
|
interface SVGFEDisplacementMapElement {
|
|
318
400
|
[GlintSymbol]: 'SVGFEDisplacementMapElement';
|
|
319
401
|
}
|
|
320
402
|
|
|
403
|
+
|
|
321
404
|
interface SVGFEDistantLightElement {
|
|
322
405
|
[GlintSymbol]: 'SVGFEDistantLightElement';
|
|
323
406
|
}
|
|
324
407
|
|
|
408
|
+
|
|
325
409
|
interface SVGFEDropShadowElement {
|
|
326
410
|
[GlintSymbol]: 'SVGFEDropShadowElement';
|
|
327
411
|
}
|
|
328
412
|
|
|
413
|
+
|
|
329
414
|
interface SVGFEFloodElement {
|
|
330
415
|
[GlintSymbol]: 'SVGFEFloodElement';
|
|
331
416
|
}
|
|
332
417
|
|
|
418
|
+
|
|
333
419
|
interface SVGFEFuncAElement {
|
|
334
420
|
[GlintSymbol]: 'SVGFEFuncAElement';
|
|
335
421
|
}
|
|
336
422
|
|
|
423
|
+
|
|
337
424
|
interface SVGFEFuncBElement {
|
|
338
425
|
[GlintSymbol]: 'SVGFEFuncBElement';
|
|
339
426
|
}
|
|
340
427
|
|
|
428
|
+
|
|
341
429
|
interface SVGFEFuncGElement {
|
|
342
430
|
[GlintSymbol]: 'SVGFEFuncGElement';
|
|
343
431
|
}
|
|
344
432
|
|
|
433
|
+
|
|
345
434
|
interface SVGFEFuncRElement {
|
|
346
435
|
[GlintSymbol]: 'SVGFEFuncRElement';
|
|
347
436
|
}
|
|
348
437
|
|
|
438
|
+
|
|
349
439
|
interface SVGFEGaussianBlurElement {
|
|
350
440
|
[GlintSymbol]: 'SVGFEGaussianBlurElement';
|
|
351
441
|
}
|
|
352
442
|
|
|
443
|
+
|
|
353
444
|
interface SVGFEImageElement {
|
|
354
445
|
[GlintSymbol]: 'SVGFEImageElement';
|
|
355
446
|
}
|
|
356
447
|
|
|
448
|
+
|
|
357
449
|
interface SVGFEMergeElement {
|
|
358
450
|
[GlintSymbol]: 'SVGFEMergeElement';
|
|
359
451
|
}
|
|
360
452
|
|
|
453
|
+
|
|
361
454
|
interface SVGFEMergeNodeElement {
|
|
362
455
|
[GlintSymbol]: 'SVGFEMergeNodeElement';
|
|
363
456
|
}
|
|
364
457
|
|
|
458
|
+
|
|
365
459
|
interface SVGFEMorphologyElement {
|
|
366
460
|
[GlintSymbol]: 'SVGFEMorphologyElement';
|
|
367
461
|
}
|
|
368
462
|
|
|
463
|
+
|
|
369
464
|
interface SVGFEOffsetElement {
|
|
370
465
|
[GlintSymbol]: 'SVGFEOffsetElement';
|
|
371
466
|
}
|
|
372
467
|
|
|
468
|
+
|
|
373
469
|
interface SVGFEPointLightElement {
|
|
374
470
|
[GlintSymbol]: 'SVGFEPointLightElement';
|
|
375
471
|
}
|
|
376
472
|
|
|
473
|
+
|
|
377
474
|
interface SVGFESpecularLightingElement {
|
|
378
475
|
[GlintSymbol]: 'SVGFESpecularLightingElement';
|
|
379
476
|
}
|
|
380
477
|
|
|
478
|
+
|
|
381
479
|
interface SVGFESpotLightElement {
|
|
382
480
|
[GlintSymbol]: 'SVGFESpotLightElement';
|
|
383
481
|
}
|
|
384
482
|
|
|
483
|
+
|
|
385
484
|
interface SVGFETileElement {
|
|
386
485
|
[GlintSymbol]: 'SVGFETileElement';
|
|
387
486
|
}
|
|
388
487
|
|
|
488
|
+
|
|
389
489
|
interface SVGFETurbulenceElement {
|
|
390
490
|
[GlintSymbol]: 'SVGFETurbulenceElement';
|
|
391
491
|
}
|
|
392
492
|
|
|
493
|
+
|
|
393
494
|
interface SVGFilterElement {
|
|
394
495
|
[GlintSymbol]: 'SVGFilterElement';
|
|
395
496
|
}
|
|
396
497
|
|
|
498
|
+
|
|
397
499
|
interface SVGForeignObjectElement {
|
|
398
500
|
[GlintSymbol]: 'SVGForeignObjectElement';
|
|
399
501
|
}
|
|
400
502
|
|
|
503
|
+
|
|
401
504
|
interface SVGGElement {
|
|
402
505
|
[GlintSymbol]: 'SVGGElement';
|
|
403
506
|
}
|
|
404
507
|
|
|
508
|
+
|
|
405
509
|
interface SVGImageElement {
|
|
406
510
|
[GlintSymbol]: 'SVGImageElement';
|
|
407
511
|
}
|
|
408
512
|
|
|
513
|
+
|
|
409
514
|
interface SVGLineElement {
|
|
410
515
|
[GlintSymbol]: 'SVGLineElement';
|
|
411
516
|
}
|
|
412
517
|
|
|
518
|
+
|
|
413
519
|
interface SVGLinearGradientElement {
|
|
414
520
|
[GlintSymbol]: 'SVGLinearGradientElement';
|
|
415
521
|
}
|
|
416
522
|
|
|
523
|
+
|
|
417
524
|
interface SVGMarkerElement {
|
|
418
525
|
[GlintSymbol]: 'SVGMarkerElement';
|
|
419
526
|
}
|
|
420
527
|
|
|
528
|
+
|
|
421
529
|
interface SVGMaskElement {
|
|
422
530
|
[GlintSymbol]: 'SVGMaskElement';
|
|
423
531
|
}
|
|
424
532
|
|
|
533
|
+
|
|
425
534
|
interface SVGMetadataElement {
|
|
426
535
|
[GlintSymbol]: 'SVGMetadataElement';
|
|
427
536
|
}
|
|
428
537
|
|
|
538
|
+
|
|
429
539
|
interface SVGMPathElement {
|
|
430
540
|
[GlintSymbol]: 'SVGMPathElement';
|
|
431
541
|
}
|
|
432
542
|
|
|
543
|
+
|
|
433
544
|
interface SVGPathElement {
|
|
434
545
|
[GlintSymbol]: 'SVGPathElement';
|
|
435
546
|
}
|
|
436
547
|
|
|
548
|
+
|
|
437
549
|
interface SVGPatternElement {
|
|
438
550
|
[GlintSymbol]: 'SVGPatternElement';
|
|
439
551
|
}
|
|
440
552
|
|
|
553
|
+
|
|
441
554
|
interface SVGPolygonElement {
|
|
442
555
|
[GlintSymbol]: 'SVGPolygonElement';
|
|
443
556
|
}
|
|
444
557
|
|
|
558
|
+
|
|
445
559
|
interface SVGPolylineElement {
|
|
446
560
|
[GlintSymbol]: 'SVGPolylineElement';
|
|
447
561
|
}
|
|
448
562
|
|
|
563
|
+
|
|
449
564
|
interface SVGRadialGradientElement {
|
|
450
565
|
[GlintSymbol]: 'SVGRadialGradientElement';
|
|
451
566
|
}
|
|
452
567
|
|
|
568
|
+
|
|
453
569
|
interface SVGRectElement {
|
|
454
570
|
[GlintSymbol]: 'SVGRectElement';
|
|
455
571
|
}
|
|
456
572
|
|
|
573
|
+
|
|
457
574
|
interface SVGScriptElement {
|
|
458
575
|
[GlintSymbol]: 'SVGScriptElement';
|
|
459
576
|
}
|
|
460
577
|
|
|
578
|
+
|
|
461
579
|
interface SVGSetElement {
|
|
462
580
|
[GlintSymbol]: 'SVGSetElement';
|
|
463
581
|
}
|
|
464
582
|
|
|
583
|
+
|
|
465
584
|
interface SVGStopElement {
|
|
466
585
|
[GlintSymbol]: 'SVGStopElement';
|
|
467
586
|
}
|
|
468
587
|
|
|
588
|
+
|
|
469
589
|
interface SVGStyleElement {
|
|
470
590
|
[GlintSymbol]: 'SVGStyleElement';
|
|
471
591
|
}
|
|
472
592
|
|
|
593
|
+
|
|
473
594
|
interface SVGSVGElement {
|
|
474
595
|
[GlintSymbol]: 'SVGSVGElement';
|
|
475
596
|
}
|
|
476
597
|
|
|
598
|
+
|
|
477
599
|
interface SVGSwitchElement {
|
|
478
600
|
[GlintSymbol]: 'SVGSwitchElement';
|
|
479
601
|
}
|
|
480
602
|
|
|
603
|
+
|
|
481
604
|
interface SVGSymbolElement {
|
|
482
605
|
[GlintSymbol]: 'SVGSymbolElement';
|
|
483
606
|
}
|
|
484
607
|
|
|
608
|
+
|
|
485
609
|
interface SVGTextElement {
|
|
486
610
|
[GlintSymbol]: 'SVGTextElement';
|
|
487
611
|
}
|
|
488
612
|
|
|
613
|
+
|
|
489
614
|
interface SVGTextPathElement {
|
|
490
615
|
[GlintSymbol]: 'SVGTextPathElement';
|
|
491
616
|
}
|
|
492
617
|
|
|
618
|
+
|
|
493
619
|
interface SVGTitleElement {
|
|
494
620
|
[GlintSymbol]: 'SVGTitleElement';
|
|
495
621
|
}
|
|
496
622
|
|
|
623
|
+
|
|
497
624
|
interface SVGTSpanElement {
|
|
498
625
|
[GlintSymbol]: 'SVGTSpanElement';
|
|
499
626
|
}
|
|
500
627
|
|
|
628
|
+
|
|
501
629
|
interface SVGUseElement {
|
|
502
630
|
[GlintSymbol]: 'SVGUseElement';
|
|
503
631
|
}
|
|
504
632
|
|
|
633
|
+
|
|
505
634
|
interface SVGViewElement {
|
|
506
635
|
[GlintSymbol]: 'SVGViewElement';
|
|
507
636
|
}
|
|
508
|
-
}
|
|
637
|
+
}
|
package/package.json
CHANGED