@vue/runtime-dom 3.3.0-alpha.4 → 3.3.0-alpha.5

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.
@@ -136,1365 +136,3 @@ declare const createSSRApp: CreateAppFunction<Element>;
136
136
 
137
137
 
138
138
  export { Transition, TransitionGroup, VueElement, createApp, createSSRApp, defineCustomElement, defineSSRCustomElement, hydrate, render, useCssModule, useCssVars, vModelCheckbox, vModelDynamic, vModelRadio, vModelSelect, vModelText, vShow, withKeys, withModifiers };
139
- // Note: this file is auto concatenated to the end of the bundled d.ts during
140
- // build.
141
-
142
- // This code is based on react definition in DefinitelyTyped published under the MIT license.
143
- // Repository: https://github.com/DefinitelyTyped/DefinitelyTyped
144
- // Path in the repository: types/react/index.d.ts
145
- //
146
- // Copyrights of original definition are:
147
- // AssureSign <http://www.assuresign.com>
148
- // Microsoft <https://microsoft.com>
149
- // John Reilly <https://github.com/johnnyreilly>
150
- // Benoit Benezech <https://github.com/bbenezech>
151
- // Patricio Zavolinsky <https://github.com/pzavolinsky>
152
- // Digiguru <https://github.com/digiguru>
153
- // Eric Anderson <https://github.com/ericanderson>
154
- // Dovydas Navickas <https://github.com/DovydasNavickas>
155
- // Josh Rutherford <https://github.com/theruther4d>
156
- // Guilherme Hübner <https://github.com/guilhermehubner>
157
- // Ferdy Budhidharma <https://github.com/ferdaber>
158
- // Johann Rakotoharisoa <https://github.com/jrakotoharisoa>
159
- // Olivier Pascal <https://github.com/pascaloliv>
160
- // Martin Hochel <https://github.com/hotell>
161
- // Frank Li <https://github.com/franklixuefei>
162
- // Jessica Franco <https://github.com/Jessidhia>
163
- // Saransh Kataria <https://github.com/saranshkataria>
164
- // Kanitkorn Sujautra <https://github.com/lukyth>
165
- // Sebastian Silbermann <https://github.com/eps1lon>
166
-
167
- import { VNode } from '@vue/runtime-core'
168
- import * as CSS from 'csstype'
169
-
170
- export interface CSSProperties
171
- extends CSS.Properties<string | number>,
172
- CSS.PropertiesHyphen<string | number> {
173
- /**
174
- * The index signature was removed to enable closed typing for style
175
- * using CSSType. You're able to use type assertion or module augmentation
176
- * to add properties or an index signature of your own.
177
- *
178
- * For examples and more information, visit:
179
- * https://github.com/frenic/csstype#what-should-i-do-when-i-get-type-errors
180
- */
181
- [v: `--${string}`]: string | number | undefined
182
- }
183
-
184
- type Booleanish = boolean | 'true' | 'false'
185
- type Numberish = number | string
186
-
187
- // All the WAI-ARIA 1.1 attributes from https://www.w3.org/TR/wai-aria-1.1/
188
- interface AriaAttributes {
189
- /** Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application. */
190
- 'aria-activedescendant'?: string
191
- /** Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute. */
192
- 'aria-atomic'?: Booleanish
193
- /**
194
- * Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be
195
- * presented if they are made.
196
- */
197
- 'aria-autocomplete'?: 'none' | 'inline' | 'list' | 'both'
198
- /** Indicates an element is being modified and that assistive technologies MAY want to wait until the modifications are complete before exposing them to the user. */
199
- 'aria-busy'?: Booleanish
200
- /**
201
- * Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.
202
- * @see aria-pressed @see aria-selected.
203
- */
204
- 'aria-checked'?: Booleanish | 'mixed'
205
- /**
206
- * Defines the total number of columns in a table, grid, or treegrid.
207
- * @see aria-colindex.
208
- */
209
- 'aria-colcount'?: Numberish
210
- /**
211
- * Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.
212
- * @see aria-colcount @see aria-colspan.
213
- */
214
- 'aria-colindex'?: Numberish
215
- /**
216
- * Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.
217
- * @see aria-colindex @see aria-rowspan.
218
- */
219
- 'aria-colspan'?: Numberish
220
- /**
221
- * Identifies the element (or elements) whose contents or presence are controlled by the current element.
222
- * @see aria-owns.
223
- */
224
- 'aria-controls'?: string
225
- /** Indicates the element that represents the current item within a container or set of related elements. */
226
- 'aria-current'?: Booleanish | 'page' | 'step' | 'location' | 'date' | 'time'
227
- /**
228
- * Identifies the element (or elements) that describes the object.
229
- * @see aria-labelledby
230
- */
231
- 'aria-describedby'?: string
232
- /**
233
- * Identifies the element that provides a detailed, extended description for the object.
234
- * @see aria-describedby.
235
- */
236
- 'aria-details'?: string
237
- /**
238
- * Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.
239
- * @see aria-hidden @see aria-readonly.
240
- */
241
- 'aria-disabled'?: Booleanish
242
- /**
243
- * Indicates what functions can be performed when a dragged object is released on the drop target.
244
- * @deprecated in ARIA 1.1
245
- */
246
- 'aria-dropeffect'?: 'none' | 'copy' | 'execute' | 'link' | 'move' | 'popup'
247
- /**
248
- * Identifies the element that provides an error message for the object.
249
- * @see aria-invalid @see aria-describedby.
250
- */
251
- 'aria-errormessage'?: string
252
- /** Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed. */
253
- 'aria-expanded'?: Booleanish
254
- /**
255
- * Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
256
- * allows assistive technology to override the general default of reading in document source order.
257
- */
258
- 'aria-flowto'?: string
259
- /**
260
- * Indicates an element's "grabbed" state in a drag-and-drop operation.
261
- * @deprecated in ARIA 1.1
262
- */
263
- 'aria-grabbed'?: Booleanish
264
- /** Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element. */
265
- 'aria-haspopup'?: Booleanish | 'menu' | 'listbox' | 'tree' | 'grid' | 'dialog'
266
- /**
267
- * Indicates whether the element is exposed to an accessibility API.
268
- * @see aria-disabled.
269
- */
270
- 'aria-hidden'?: Booleanish
271
- /**
272
- * Indicates the entered value does not conform to the format expected by the application.
273
- * @see aria-errormessage.
274
- */
275
- 'aria-invalid'?: Booleanish | 'grammar' | 'spelling'
276
- /** Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element. */
277
- 'aria-keyshortcuts'?: string
278
- /**
279
- * Defines a string value that labels the current element.
280
- * @see aria-labelledby.
281
- */
282
- 'aria-label'?: string
283
- /**
284
- * Identifies the element (or elements) that labels the current element.
285
- * @see aria-describedby.
286
- */
287
- 'aria-labelledby'?: string
288
- /** Defines the hierarchical level of an element within a structure. */
289
- 'aria-level'?: Numberish
290
- /** Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region. */
291
- 'aria-live'?: 'off' | 'assertive' | 'polite'
292
- /** Indicates whether an element is modal when displayed. */
293
- 'aria-modal'?: Booleanish
294
- /** Indicates whether a text box accepts multiple lines of input or only a single line. */
295
- 'aria-multiline'?: Booleanish
296
- /** Indicates that the user may select more than one item from the current selectable descendants. */
297
- 'aria-multiselectable'?: Booleanish
298
- /** Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous. */
299
- 'aria-orientation'?: 'horizontal' | 'vertical'
300
- /**
301
- * Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
302
- * between DOM elements where the DOM hierarchy cannot be used to represent the relationship.
303
- * @see aria-controls.
304
- */
305
- 'aria-owns'?: string
306
- /**
307
- * Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
308
- * A hint could be a sample value or a brief description of the expected format.
309
- */
310
- 'aria-placeholder'?: string
311
- /**
312
- * Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
313
- * @see aria-setsize.
314
- */
315
- 'aria-posinset'?: Numberish
316
- /**
317
- * Indicates the current "pressed" state of toggle buttons.
318
- * @see aria-checked @see aria-selected.
319
- */
320
- 'aria-pressed'?: Booleanish | 'mixed'
321
- /**
322
- * Indicates that the element is not editable, but is otherwise operable.
323
- * @see aria-disabled.
324
- */
325
- 'aria-readonly'?: Booleanish
326
- /**
327
- * Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.
328
- * @see aria-atomic.
329
- */
330
- 'aria-relevant'?: 'additions' | 'additions text' | 'all' | 'removals' | 'text'
331
- /** Indicates that user input is required on the element before a form may be submitted. */
332
- 'aria-required'?: Booleanish
333
- /** Defines a human-readable, author-localized description for the role of an element. */
334
- 'aria-roledescription'?: string
335
- /**
336
- * Defines the total number of rows in a table, grid, or treegrid.
337
- * @see aria-rowindex.
338
- */
339
- 'aria-rowcount'?: Numberish
340
- /**
341
- * Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.
342
- * @see aria-rowcount @see aria-rowspan.
343
- */
344
- 'aria-rowindex'?: Numberish
345
- /**
346
- * Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.
347
- * @see aria-rowindex @see aria-colspan.
348
- */
349
- 'aria-rowspan'?: Numberish
350
- /**
351
- * Indicates the current "selected" state of various widgets.
352
- * @see aria-checked @see aria-pressed.
353
- */
354
- 'aria-selected'?: Booleanish
355
- /**
356
- * Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
357
- * @see aria-posinset.
358
- */
359
- 'aria-setsize'?: Numberish
360
- /** Indicates if items in a table or grid are sorted in ascending or descending order. */
361
- 'aria-sort'?: 'none' | 'ascending' | 'descending' | 'other'
362
- /** Defines the maximum allowed value for a range widget. */
363
- 'aria-valuemax'?: Numberish
364
- /** Defines the minimum allowed value for a range widget. */
365
- 'aria-valuemin'?: Numberish
366
- /**
367
- * Defines the current value for a range widget.
368
- * @see aria-valuetext.
369
- */
370
- 'aria-valuenow'?: Numberish
371
- /** Defines the human readable text alternative of aria-valuenow for a range widget. */
372
- 'aria-valuetext'?: string
373
- }
374
-
375
- // Vue's style normalization supports nested arrays
376
- export type StyleValue = string | CSSProperties | Array<StyleValue>
377
-
378
- export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {
379
- innerHTML?: string
380
-
381
- class?: any
382
- style?: StyleValue
383
-
384
- // Standard HTML Attributes
385
- accesskey?: string
386
- contenteditable?: Booleanish | 'inherit'
387
- contextmenu?: string
388
- dir?: string
389
- draggable?: Booleanish
390
- hidden?: Booleanish
391
- id?: string
392
- lang?: string
393
- placeholder?: string
394
- spellcheck?: Booleanish
395
- tabindex?: Numberish
396
- title?: string
397
- translate?: 'yes' | 'no'
398
-
399
- // Unknown
400
- radiogroup?: string // <command>, <menuitem>
401
-
402
- // WAI-ARIA
403
- role?: string
404
-
405
- // RDFa Attributes
406
- about?: string
407
- datatype?: string
408
- inlist?: any
409
- prefix?: string
410
- property?: string
411
- resource?: string
412
- typeof?: string
413
- vocab?: string
414
-
415
- // Non-standard Attributes
416
- autocapitalize?: string
417
- autocorrect?: string
418
- autosave?: string
419
- color?: string
420
- itemprop?: string
421
- itemscope?: Booleanish
422
- itemtype?: string
423
- itemid?: string
424
- itemref?: string
425
- results?: Numberish
426
- security?: string
427
- unselectable?: 'on' | 'off'
428
-
429
- // Living Standard
430
- /**
431
- * Hints at the type of data that might be entered by the user while editing the element or its contents
432
- * @see https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute
433
- */
434
- inputmode?:
435
- | 'none'
436
- | 'text'
437
- | 'tel'
438
- | 'url'
439
- | 'email'
440
- | 'numeric'
441
- | 'decimal'
442
- | 'search'
443
- /**
444
- * Specify that a standard HTML element should behave like a defined custom built-in element
445
- * @see https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is
446
- */
447
- is?: string
448
- }
449
-
450
- type HTMLAttributeReferrerPolicy =
451
- | ''
452
- | 'no-referrer'
453
- | 'no-referrer-when-downgrade'
454
- | 'origin'
455
- | 'origin-when-cross-origin'
456
- | 'same-origin'
457
- | 'strict-origin'
458
- | 'strict-origin-when-cross-origin'
459
- | 'unsafe-url'
460
-
461
- export interface AnchorHTMLAttributes extends HTMLAttributes {
462
- download?: any
463
- href?: string
464
- hreflang?: string
465
- media?: string
466
- ping?: string
467
- rel?: string
468
- target?: string
469
- type?: string
470
- referrerpolicy?: HTMLAttributeReferrerPolicy
471
- }
472
-
473
- export interface AreaHTMLAttributes extends HTMLAttributes {
474
- alt?: string
475
- coords?: string
476
- download?: any
477
- href?: string
478
- hreflang?: string
479
- media?: string
480
- referrerpolicy?: HTMLAttributeReferrerPolicy
481
- rel?: string
482
- shape?: string
483
- target?: string
484
- }
485
-
486
- export interface AudioHTMLAttributes extends MediaHTMLAttributes {}
487
-
488
- export interface BaseHTMLAttributes extends HTMLAttributes {
489
- href?: string
490
- target?: string
491
- }
492
-
493
- export interface BlockquoteHTMLAttributes extends HTMLAttributes {
494
- cite?: string
495
- }
496
-
497
- export interface ButtonHTMLAttributes extends HTMLAttributes {
498
- autofocus?: Booleanish
499
- disabled?: Booleanish
500
- form?: string
501
- formaction?: string
502
- formenctype?: string
503
- formmethod?: string
504
- formnovalidate?: Booleanish
505
- formtarget?: string
506
- name?: string
507
- type?: 'submit' | 'reset' | 'button'
508
- value?: string | string[] | number
509
- }
510
-
511
- export interface CanvasHTMLAttributes extends HTMLAttributes {
512
- height?: Numberish
513
- width?: Numberish
514
- }
515
-
516
- export interface ColHTMLAttributes extends HTMLAttributes {
517
- span?: Numberish
518
- width?: Numberish
519
- }
520
-
521
- export interface ColgroupHTMLAttributes extends HTMLAttributes {
522
- span?: Numberish
523
- }
524
-
525
- export interface DataHTMLAttributes extends HTMLAttributes {
526
- value?: string | string[] | number
527
- }
528
-
529
- export interface DetailsHTMLAttributes extends HTMLAttributes {
530
- open?: Booleanish
531
- }
532
-
533
- export interface DelHTMLAttributes extends HTMLAttributes {
534
- cite?: string
535
- datetime?: string
536
- }
537
-
538
- export interface DialogHTMLAttributes extends HTMLAttributes {
539
- open?: Booleanish
540
- }
541
-
542
- export interface EmbedHTMLAttributes extends HTMLAttributes {
543
- height?: Numberish
544
- src?: string
545
- type?: string
546
- width?: Numberish
547
- }
548
-
549
- export interface FieldsetHTMLAttributes extends HTMLAttributes {
550
- disabled?: Booleanish
551
- form?: string
552
- name?: string
553
- }
554
-
555
- export interface FormHTMLAttributes extends HTMLAttributes {
556
- acceptcharset?: string
557
- action?: string
558
- autocomplete?: string
559
- enctype?: string
560
- method?: string
561
- name?: string
562
- novalidate?: Booleanish
563
- target?: string
564
- }
565
-
566
- export interface HtmlHTMLAttributes extends HTMLAttributes {
567
- manifest?: string
568
- }
569
-
570
- export interface IframeHTMLAttributes extends HTMLAttributes {
571
- allow?: string
572
- allowfullscreen?: Booleanish
573
- allowtransparency?: Booleanish
574
- frameborder?: Numberish
575
- height?: Numberish
576
- marginheight?: Numberish
577
- marginwidth?: Numberish
578
- name?: string
579
- referrerpolicy?: HTMLAttributeReferrerPolicy
580
- sandbox?: string
581
- scrolling?: string
582
- seamless?: Booleanish
583
- src?: string
584
- srcdoc?: string
585
- width?: Numberish
586
- }
587
-
588
- export interface ImgHTMLAttributes extends HTMLAttributes {
589
- alt?: string
590
- crossorigin?: 'anonymous' | 'use-credentials' | ''
591
- decoding?: 'async' | 'auto' | 'sync'
592
- height?: Numberish
593
- referrerpolicy?: HTMLAttributeReferrerPolicy
594
- sizes?: string
595
- src?: string
596
- srcset?: string
597
- usemap?: string
598
- width?: Numberish
599
- }
600
-
601
- export interface InsHTMLAttributes extends HTMLAttributes {
602
- cite?: string
603
- datetime?: string
604
- }
605
-
606
- export interface InputHTMLAttributes extends HTMLAttributes {
607
- accept?: string
608
- alt?: string
609
- autocomplete?: string
610
- autofocus?: Booleanish
611
- capture?: boolean | 'user' | 'environment' // https://www.w3.org/tr/html-media-capture/#the-capture-attribute
612
- checked?: Booleanish | any[] | Set<any> // for IDE v-model multi-checkbox support
613
- crossorigin?: string
614
- disabled?: Booleanish
615
- form?: string
616
- formaction?: string
617
- formenctype?: string
618
- formmethod?: string
619
- formnovalidate?: Booleanish
620
- formtarget?: string
621
- height?: Numberish
622
- indeterminate?: boolean
623
- list?: string
624
- max?: Numberish
625
- maxlength?: Numberish
626
- min?: Numberish
627
- minlength?: Numberish
628
- multiple?: Booleanish
629
- name?: string
630
- pattern?: string
631
- placeholder?: string
632
- readonly?: Booleanish
633
- required?: Booleanish
634
- size?: Numberish
635
- src?: string
636
- step?: Numberish
637
- type?: string
638
- value?: any // we support :value to be bound to anything w/ v-model
639
- width?: Numberish
640
- }
641
-
642
- export interface KeygenHTMLAttributes extends HTMLAttributes {
643
- autofocus?: Booleanish
644
- challenge?: string
645
- disabled?: Booleanish
646
- form?: string
647
- keytype?: string
648
- keyparams?: string
649
- name?: string
650
- }
651
-
652
- export interface LabelHTMLAttributes extends HTMLAttributes {
653
- for?: string
654
- form?: string
655
- }
656
-
657
- export interface LiHTMLAttributes extends HTMLAttributes {
658
- value?: string | string[] | number
659
- }
660
-
661
- export interface LinkHTMLAttributes extends HTMLAttributes {
662
- as?: string
663
- crossorigin?: string
664
- href?: string
665
- hreflang?: string
666
- integrity?: string
667
- media?: string
668
- referrerpolicy?: HTMLAttributeReferrerPolicy
669
- rel?: string
670
- sizes?: string
671
- type?: string
672
- }
673
-
674
- export interface MapHTMLAttributes extends HTMLAttributes {
675
- name?: string
676
- }
677
-
678
- export interface MenuHTMLAttributes extends HTMLAttributes {
679
- type?: string
680
- }
681
-
682
- export interface MediaHTMLAttributes extends HTMLAttributes {
683
- autoplay?: Booleanish
684
- controls?: Booleanish
685
- controlslist?: string
686
- crossorigin?: string
687
- loop?: Booleanish
688
- mediagroup?: string
689
- muted?: Booleanish
690
- playsinline?: Booleanish
691
- preload?: string
692
- src?: string
693
- }
694
-
695
- export interface MetaHTMLAttributes extends HTMLAttributes {
696
- charset?: string
697
- content?: string
698
- httpequiv?: string
699
- name?: string
700
- }
701
-
702
- export interface MeterHTMLAttributes extends HTMLAttributes {
703
- form?: string
704
- high?: Numberish
705
- low?: Numberish
706
- max?: Numberish
707
- min?: Numberish
708
- optimum?: Numberish
709
- value?: string | string[] | number
710
- }
711
-
712
- export interface QuoteHTMLAttributes extends HTMLAttributes {
713
- cite?: string
714
- }
715
-
716
- export interface ObjectHTMLAttributes extends HTMLAttributes {
717
- classid?: string
718
- data?: string
719
- form?: string
720
- height?: Numberish
721
- name?: string
722
- type?: string
723
- usemap?: string
724
- width?: Numberish
725
- wmode?: string
726
- }
727
-
728
- export interface OlHTMLAttributes extends HTMLAttributes {
729
- reversed?: Booleanish
730
- start?: Numberish
731
- type?: '1' | 'a' | 'A' | 'i' | 'I'
732
- }
733
-
734
- export interface OptgroupHTMLAttributes extends HTMLAttributes {
735
- disabled?: Booleanish
736
- label?: string
737
- }
738
-
739
- export interface OptionHTMLAttributes extends HTMLAttributes {
740
- disabled?: Booleanish
741
- label?: string
742
- selected?: Booleanish
743
- value?: any // we support :value to be bound to anything w/ v-model
744
- }
745
-
746
- export interface OutputHTMLAttributes extends HTMLAttributes {
747
- for?: string
748
- form?: string
749
- name?: string
750
- }
751
-
752
- export interface ParamHTMLAttributes extends HTMLAttributes {
753
- name?: string
754
- value?: string | string[] | number
755
- }
756
-
757
- export interface ProgressHTMLAttributes extends HTMLAttributes {
758
- max?: Numberish
759
- value?: string | string[] | number
760
- }
761
-
762
- export interface ScriptHTMLAttributes extends HTMLAttributes {
763
- async?: Booleanish
764
- charset?: string
765
- crossorigin?: string
766
- defer?: Booleanish
767
- integrity?: string
768
- nomodule?: Booleanish
769
- referrerpolicy?: HTMLAttributeReferrerPolicy
770
- nonce?: string
771
- src?: string
772
- type?: string
773
- }
774
-
775
- export interface SelectHTMLAttributes extends HTMLAttributes {
776
- autocomplete?: string
777
- autofocus?: Booleanish
778
- disabled?: Booleanish
779
- form?: string
780
- multiple?: Booleanish
781
- name?: string
782
- required?: Booleanish
783
- size?: Numberish
784
- value?: any // we support :value to be bound to anything w/ v-model
785
- }
786
-
787
- export interface SourceHTMLAttributes extends HTMLAttributes {
788
- media?: string
789
- sizes?: string
790
- src?: string
791
- srcset?: string
792
- type?: string
793
- }
794
-
795
- export interface StyleHTMLAttributes extends HTMLAttributes {
796
- media?: string
797
- nonce?: string
798
- scoped?: Booleanish
799
- type?: string
800
- }
801
-
802
- export interface TableHTMLAttributes extends HTMLAttributes {
803
- cellpadding?: Numberish
804
- cellspacing?: Numberish
805
- summary?: string
806
- }
807
-
808
- export interface TextareaHTMLAttributes extends HTMLAttributes {
809
- autocomplete?: string
810
- autofocus?: Booleanish
811
- cols?: Numberish
812
- dirname?: string
813
- disabled?: Booleanish
814
- form?: string
815
- maxlength?: Numberish
816
- minlength?: Numberish
817
- name?: string
818
- placeholder?: string
819
- readonly?: boolean
820
- required?: Booleanish
821
- rows?: Numberish
822
- value?: string | string[] | number
823
- wrap?: string
824
- }
825
-
826
- export interface TdHTMLAttributes extends HTMLAttributes {
827
- align?: 'left' | 'center' | 'right' | 'justify' | 'char'
828
- colspan?: Numberish
829
- headers?: string
830
- rowspan?: Numberish
831
- scope?: string
832
- valign?: 'top' | 'middle' | 'bottom' | 'baseline'
833
- }
834
-
835
- export interface ThHTMLAttributes extends HTMLAttributes {
836
- align?: 'left' | 'center' | 'right' | 'justify' | 'char'
837
- colspan?: Numberish
838
- headers?: string
839
- rowspan?: Numberish
840
- scope?: string
841
- }
842
-
843
- export interface TimeHTMLAttributes extends HTMLAttributes {
844
- datetime?: string
845
- }
846
-
847
- export interface TrackHTMLAttributes extends HTMLAttributes {
848
- default?: Booleanish
849
- kind?: string
850
- label?: string
851
- src?: string
852
- srclang?: string
853
- }
854
-
855
- export interface VideoHTMLAttributes extends MediaHTMLAttributes {
856
- height?: Numberish
857
- playsinline?: Booleanish
858
- poster?: string
859
- width?: Numberish
860
- disablePictureInPicture?: Booleanish
861
- }
862
-
863
- export interface WebViewHTMLAttributes extends HTMLAttributes {
864
- allowfullscreen?: Booleanish
865
- allowpopups?: Booleanish
866
- autoFocus?: Booleanish
867
- autosize?: Booleanish
868
- blinkfeatures?: string
869
- disableblinkfeatures?: string
870
- disableguestresize?: Booleanish
871
- disablewebsecurity?: Booleanish
872
- guestinstance?: string
873
- httpreferrer?: string
874
- nodeintegration?: Booleanish
875
- partition?: string
876
- plugins?: Booleanish
877
- preload?: string
878
- src?: string
879
- useragent?: string
880
- webpreferences?: string
881
- }
882
-
883
- export interface SVGAttributes extends AriaAttributes, EventHandlers<Events> {
884
- innerHTML?: string
885
-
886
- /**
887
- * SVG Styling Attributes
888
- * @see https://www.w3.org/TR/SVG/styling.html#ElementSpecificStyling
889
- */
890
- class?: any
891
- style?: string | CSSProperties
892
-
893
- color?: string
894
- height?: Numberish
895
- id?: string
896
- lang?: string
897
- max?: Numberish
898
- media?: string
899
- method?: string
900
- min?: Numberish
901
- name?: string
902
- target?: string
903
- type?: string
904
- width?: Numberish
905
-
906
- // Other HTML properties supported by SVG elements in browsers
907
- role?: string
908
- tabindex?: Numberish
909
-
910
- // SVG Specific attributes
911
- 'accent-height'?: Numberish
912
- accumulate?: 'none' | 'sum'
913
- additive?: 'replace' | 'sum'
914
- 'alignment-baseline'?:
915
- | 'auto'
916
- | 'baseline'
917
- | 'before-edge'
918
- | 'text-before-edge'
919
- | 'middle'
920
- | 'central'
921
- | 'after-edge'
922
- | 'text-after-edge'
923
- | 'ideographic'
924
- | 'alphabetic'
925
- | 'hanging'
926
- | 'mathematical'
927
- | 'inherit'
928
- allowReorder?: 'no' | 'yes'
929
- alphabetic?: Numberish
930
- amplitude?: Numberish
931
- 'arabic-form'?: 'initial' | 'medial' | 'terminal' | 'isolated'
932
- ascent?: Numberish
933
- attributeName?: string
934
- attributeType?: string
935
- autoReverse?: Numberish
936
- azimuth?: Numberish
937
- baseFrequency?: Numberish
938
- 'baseline-shift'?: Numberish
939
- baseProfile?: Numberish
940
- bbox?: Numberish
941
- begin?: Numberish
942
- bias?: Numberish
943
- by?: Numberish
944
- calcMode?: Numberish
945
- 'cap-height'?: Numberish
946
- clip?: Numberish
947
- 'clip-path'?: string
948
- clipPathUnits?: Numberish
949
- 'clip-rule'?: Numberish
950
- 'color-interpolation'?: Numberish
951
- 'color-interpolation-filters'?: 'auto' | 'sRGB' | 'linearRGB' | 'inherit'
952
- 'color-profile'?: Numberish
953
- 'color-rendering'?: Numberish
954
- contentScriptType?: Numberish
955
- contentStyleType?: Numberish
956
- cursor?: Numberish
957
- cx?: Numberish
958
- cy?: Numberish
959
- d?: string
960
- decelerate?: Numberish
961
- descent?: Numberish
962
- diffuseConstant?: Numberish
963
- direction?: Numberish
964
- display?: Numberish
965
- divisor?: Numberish
966
- 'dominant-baseline'?: Numberish
967
- dur?: Numberish
968
- dx?: Numberish
969
- dy?: Numberish
970
- edgeMode?: Numberish
971
- elevation?: Numberish
972
- 'enable-background'?: Numberish
973
- end?: Numberish
974
- exponent?: Numberish
975
- externalResourcesRequired?: Numberish
976
- fill?: string
977
- 'fill-opacity'?: Numberish
978
- 'fill-rule'?: 'nonzero' | 'evenodd' | 'inherit'
979
- filter?: string
980
- filterRes?: Numberish
981
- filterUnits?: Numberish
982
- 'flood-color'?: Numberish
983
- 'flood-opacity'?: Numberish
984
- focusable?: Numberish
985
- 'font-family'?: string
986
- 'font-size'?: Numberish
987
- 'font-size-adjust'?: Numberish
988
- 'font-stretch'?: Numberish
989
- 'font-style'?: Numberish
990
- 'font-variant'?: Numberish
991
- 'font-weight'?: Numberish
992
- format?: Numberish
993
- from?: Numberish
994
- fx?: Numberish
995
- fy?: Numberish
996
- g1?: Numberish
997
- g2?: Numberish
998
- 'glyph-name'?: Numberish
999
- 'glyph-orientation-horizontal'?: Numberish
1000
- 'glyph-orientation-vertical'?: Numberish
1001
- glyphRef?: Numberish
1002
- gradientTransform?: string
1003
- gradientUnits?: string
1004
- hanging?: Numberish
1005
- 'horiz-adv-x'?: Numberish
1006
- 'horiz-origin-x'?: Numberish
1007
- href?: string
1008
- ideographic?: Numberish
1009
- 'image-rendering'?: Numberish
1010
- in2?: Numberish
1011
- in?: string
1012
- intercept?: Numberish
1013
- k1?: Numberish
1014
- k2?: Numberish
1015
- k3?: Numberish
1016
- k4?: Numberish
1017
- k?: Numberish
1018
- kernelMatrix?: Numberish
1019
- kernelUnitLength?: Numberish
1020
- kerning?: Numberish
1021
- keyPoints?: Numberish
1022
- keySplines?: Numberish
1023
- keyTimes?: Numberish
1024
- lengthAdjust?: Numberish
1025
- 'letter-spacing'?: Numberish
1026
- 'lighting-color'?: Numberish
1027
- limitingConeAngle?: Numberish
1028
- local?: Numberish
1029
- 'marker-end'?: string
1030
- markerHeight?: Numberish
1031
- 'marker-mid'?: string
1032
- 'marker-start'?: string
1033
- markerUnits?: Numberish
1034
- markerWidth?: Numberish
1035
- mask?: string
1036
- maskContentUnits?: Numberish
1037
- maskUnits?: Numberish
1038
- mathematical?: Numberish
1039
- mode?: Numberish
1040
- numOctaves?: Numberish
1041
- offset?: Numberish
1042
- opacity?: Numberish
1043
- operator?: Numberish
1044
- order?: Numberish
1045
- orient?: Numberish
1046
- orientation?: Numberish
1047
- origin?: Numberish
1048
- overflow?: Numberish
1049
- 'overline-position'?: Numberish
1050
- 'overline-thickness'?: Numberish
1051
- 'paint-order'?: Numberish
1052
- 'panose-1'?: Numberish
1053
- pathLength?: Numberish
1054
- patternContentUnits?: string
1055
- patternTransform?: Numberish
1056
- patternUnits?: string
1057
- 'pointer-events'?: Numberish
1058
- points?: string
1059
- pointsAtX?: Numberish
1060
- pointsAtY?: Numberish
1061
- pointsAtZ?: Numberish
1062
- preserveAlpha?: Numberish
1063
- preserveAspectRatio?: string
1064
- primitiveUnits?: Numberish
1065
- r?: Numberish
1066
- radius?: Numberish
1067
- refX?: Numberish
1068
- refY?: Numberish
1069
- renderingIntent?: Numberish
1070
- repeatCount?: Numberish
1071
- repeatDur?: Numberish
1072
- requiredExtensions?: Numberish
1073
- requiredFeatures?: Numberish
1074
- restart?: Numberish
1075
- result?: string
1076
- rotate?: Numberish
1077
- rx?: Numberish
1078
- ry?: Numberish
1079
- scale?: Numberish
1080
- seed?: Numberish
1081
- 'shape-rendering'?: Numberish
1082
- slope?: Numberish
1083
- spacing?: Numberish
1084
- specularConstant?: Numberish
1085
- specularExponent?: Numberish
1086
- speed?: Numberish
1087
- spreadMethod?: string
1088
- startOffset?: Numberish
1089
- stdDeviation?: Numberish
1090
- stemh?: Numberish
1091
- stemv?: Numberish
1092
- stitchTiles?: Numberish
1093
- 'stop-color'?: string
1094
- 'stop-opacity'?: Numberish
1095
- 'strikethrough-position'?: Numberish
1096
- 'strikethrough-thickness'?: Numberish
1097
- string?: Numberish
1098
- stroke?: string
1099
- 'stroke-dasharray'?: Numberish
1100
- 'stroke-dashoffset'?: Numberish
1101
- 'stroke-linecap'?: 'butt' | 'round' | 'square' | 'inherit'
1102
- 'stroke-linejoin'?: 'miter' | 'round' | 'bevel' | 'inherit'
1103
- 'stroke-miterlimit'?: Numberish
1104
- 'stroke-opacity'?: Numberish
1105
- 'stroke-width'?: Numberish
1106
- surfaceScale?: Numberish
1107
- systemLanguage?: Numberish
1108
- tableValues?: Numberish
1109
- targetX?: Numberish
1110
- targetY?: Numberish
1111
- 'text-anchor'?: string
1112
- 'text-decoration'?: Numberish
1113
- textLength?: Numberish
1114
- 'text-rendering'?: Numberish
1115
- to?: Numberish
1116
- transform?: string
1117
- u1?: Numberish
1118
- u2?: Numberish
1119
- 'underline-position'?: Numberish
1120
- 'underline-thickness'?: Numberish
1121
- unicode?: Numberish
1122
- 'unicode-bidi'?: Numberish
1123
- 'unicode-range'?: Numberish
1124
- 'unitsPer-em'?: Numberish
1125
- 'v-alphabetic'?: Numberish
1126
- values?: string
1127
- 'vector-effect'?: Numberish
1128
- version?: string
1129
- 'vert-adv-y'?: Numberish
1130
- 'vert-origin-x'?: Numberish
1131
- 'vert-origin-y'?: Numberish
1132
- 'v-hanging'?: Numberish
1133
- 'v-ideographic'?: Numberish
1134
- viewBox?: string
1135
- viewTarget?: Numberish
1136
- visibility?: Numberish
1137
- 'v-mathematical'?: Numberish
1138
- widths?: Numberish
1139
- 'word-spacing'?: Numberish
1140
- 'writing-mode'?: Numberish
1141
- x1?: Numberish
1142
- x2?: Numberish
1143
- x?: Numberish
1144
- xChannelSelector?: string
1145
- 'x-height'?: Numberish
1146
- xlinkActuate?: string
1147
- xlinkArcrole?: string
1148
- xlinkHref?: string
1149
- xlinkRole?: string
1150
- xlinkShow?: string
1151
- xlinkTitle?: string
1152
- xlinkType?: string
1153
- xmlns?: string
1154
- y1?: Numberish
1155
- y2?: Numberish
1156
- y?: Numberish
1157
- yChannelSelector?: string
1158
- z?: Numberish
1159
- zoomAndPan?: string
1160
- }
1161
-
1162
- interface IntrinsicElementAttributes {
1163
- a: AnchorHTMLAttributes
1164
- abbr: HTMLAttributes
1165
- address: HTMLAttributes
1166
- area: AreaHTMLAttributes
1167
- article: HTMLAttributes
1168
- aside: HTMLAttributes
1169
- audio: AudioHTMLAttributes
1170
- b: HTMLAttributes
1171
- base: BaseHTMLAttributes
1172
- bdi: HTMLAttributes
1173
- bdo: HTMLAttributes
1174
- blockquote: BlockquoteHTMLAttributes
1175
- body: HTMLAttributes
1176
- br: HTMLAttributes
1177
- button: ButtonHTMLAttributes
1178
- canvas: CanvasHTMLAttributes
1179
- caption: HTMLAttributes
1180
- cite: HTMLAttributes
1181
- code: HTMLAttributes
1182
- col: ColHTMLAttributes
1183
- colgroup: ColgroupHTMLAttributes
1184
- data: DataHTMLAttributes
1185
- datalist: HTMLAttributes
1186
- dd: HTMLAttributes
1187
- del: DelHTMLAttributes
1188
- details: DetailsHTMLAttributes
1189
- dfn: HTMLAttributes
1190
- dialog: DialogHTMLAttributes
1191
- div: HTMLAttributes
1192
- dl: HTMLAttributes
1193
- dt: HTMLAttributes
1194
- em: HTMLAttributes
1195
- embed: EmbedHTMLAttributes
1196
- fieldset: FieldsetHTMLAttributes
1197
- figcaption: HTMLAttributes
1198
- figure: HTMLAttributes
1199
- footer: HTMLAttributes
1200
- form: FormHTMLAttributes
1201
- h1: HTMLAttributes
1202
- h2: HTMLAttributes
1203
- h3: HTMLAttributes
1204
- h4: HTMLAttributes
1205
- h5: HTMLAttributes
1206
- h6: HTMLAttributes
1207
- head: HTMLAttributes
1208
- header: HTMLAttributes
1209
- hgroup: HTMLAttributes
1210
- hr: HTMLAttributes
1211
- html: HtmlHTMLAttributes
1212
- i: HTMLAttributes
1213
- iframe: IframeHTMLAttributes
1214
- img: ImgHTMLAttributes
1215
- input: InputHTMLAttributes
1216
- ins: InsHTMLAttributes
1217
- kbd: HTMLAttributes
1218
- keygen: KeygenHTMLAttributes
1219
- label: LabelHTMLAttributes
1220
- legend: HTMLAttributes
1221
- li: LiHTMLAttributes
1222
- link: LinkHTMLAttributes
1223
- main: HTMLAttributes
1224
- map: MapHTMLAttributes
1225
- mark: HTMLAttributes
1226
- menu: MenuHTMLAttributes
1227
- meta: MetaHTMLAttributes
1228
- meter: MeterHTMLAttributes
1229
- nav: HTMLAttributes
1230
- noindex: HTMLAttributes
1231
- noscript: HTMLAttributes
1232
- object: ObjectHTMLAttributes
1233
- ol: OlHTMLAttributes
1234
- optgroup: OptgroupHTMLAttributes
1235
- option: OptionHTMLAttributes
1236
- output: OutputHTMLAttributes
1237
- p: HTMLAttributes
1238
- param: ParamHTMLAttributes
1239
- picture: HTMLAttributes
1240
- pre: HTMLAttributes
1241
- progress: ProgressHTMLAttributes
1242
- q: QuoteHTMLAttributes
1243
- rp: HTMLAttributes
1244
- rt: HTMLAttributes
1245
- ruby: HTMLAttributes
1246
- s: HTMLAttributes
1247
- samp: HTMLAttributes
1248
- script: ScriptHTMLAttributes
1249
- section: HTMLAttributes
1250
- select: SelectHTMLAttributes
1251
- small: HTMLAttributes
1252
- source: SourceHTMLAttributes
1253
- span: HTMLAttributes
1254
- strong: HTMLAttributes
1255
- style: StyleHTMLAttributes
1256
- sub: HTMLAttributes
1257
- summary: HTMLAttributes
1258
- sup: HTMLAttributes
1259
- table: TableHTMLAttributes
1260
- template: HTMLAttributes
1261
- tbody: HTMLAttributes
1262
- td: TdHTMLAttributes
1263
- textarea: TextareaHTMLAttributes
1264
- tfoot: HTMLAttributes
1265
- th: ThHTMLAttributes
1266
- thead: HTMLAttributes
1267
- time: TimeHTMLAttributes
1268
- title: HTMLAttributes
1269
- tr: HTMLAttributes
1270
- track: TrackHTMLAttributes
1271
- u: HTMLAttributes
1272
- ul: HTMLAttributes
1273
- var: HTMLAttributes
1274
- video: VideoHTMLAttributes
1275
- wbr: HTMLAttributes
1276
- webview: WebViewHTMLAttributes
1277
-
1278
- // SVG
1279
- svg: SVGAttributes
1280
-
1281
- animate: SVGAttributes
1282
- animateMotion: SVGAttributes
1283
- animateTransform: SVGAttributes
1284
- circle: SVGAttributes
1285
- clipPath: SVGAttributes
1286
- defs: SVGAttributes
1287
- desc: SVGAttributes
1288
- ellipse: SVGAttributes
1289
- feBlend: SVGAttributes
1290
- feColorMatrix: SVGAttributes
1291
- feComponentTransfer: SVGAttributes
1292
- feComposite: SVGAttributes
1293
- feConvolveMatrix: SVGAttributes
1294
- feDiffuseLighting: SVGAttributes
1295
- feDisplacementMap: SVGAttributes
1296
- feDistantLight: SVGAttributes
1297
- feDropShadow: SVGAttributes
1298
- feFlood: SVGAttributes
1299
- feFuncA: SVGAttributes
1300
- feFuncB: SVGAttributes
1301
- feFuncG: SVGAttributes
1302
- feFuncR: SVGAttributes
1303
- feGaussianBlur: SVGAttributes
1304
- feImage: SVGAttributes
1305
- feMerge: SVGAttributes
1306
- feMergeNode: SVGAttributes
1307
- feMorphology: SVGAttributes
1308
- feOffset: SVGAttributes
1309
- fePointLight: SVGAttributes
1310
- feSpecularLighting: SVGAttributes
1311
- feSpotLight: SVGAttributes
1312
- feTile: SVGAttributes
1313
- feTurbulence: SVGAttributes
1314
- filter: SVGAttributes
1315
- foreignObject: SVGAttributes
1316
- g: SVGAttributes
1317
- image: SVGAttributes
1318
- line: SVGAttributes
1319
- linearGradient: SVGAttributes
1320
- marker: SVGAttributes
1321
- mask: SVGAttributes
1322
- metadata: SVGAttributes
1323
- mpath: SVGAttributes
1324
- path: SVGAttributes
1325
- pattern: SVGAttributes
1326
- polygon: SVGAttributes
1327
- polyline: SVGAttributes
1328
- radialGradient: SVGAttributes
1329
- rect: SVGAttributes
1330
- stop: SVGAttributes
1331
- switch: SVGAttributes
1332
- symbol: SVGAttributes
1333
- text: SVGAttributes
1334
- textPath: SVGAttributes
1335
- tspan: SVGAttributes
1336
- use: SVGAttributes
1337
- view: SVGAttributes
1338
- }
1339
-
1340
- export interface Events {
1341
- // clipboard events
1342
- onCopy: ClipboardEvent
1343
- onCut: ClipboardEvent
1344
- onPaste: ClipboardEvent
1345
-
1346
- // composition events
1347
- onCompositionend: CompositionEvent
1348
- onCompositionstart: CompositionEvent
1349
- onCompositionupdate: CompositionEvent
1350
-
1351
- // drag drop events
1352
- onDrag: DragEvent
1353
- onDragend: DragEvent
1354
- onDragenter: DragEvent
1355
- onDragexit: DragEvent
1356
- onDragleave: DragEvent
1357
- onDragover: DragEvent
1358
- onDragstart: DragEvent
1359
- onDrop: DragEvent
1360
-
1361
- // focus events
1362
- onFocus: FocusEvent
1363
- onFocusin: FocusEvent
1364
- onFocusout: FocusEvent
1365
- onBlur: FocusEvent
1366
-
1367
- // form events
1368
- onChange: Event
1369
- onBeforeinput: Event
1370
- onInput: Event
1371
- onReset: Event
1372
- onSubmit: Event
1373
- onInvalid: Event
1374
-
1375
- // image events
1376
- onLoad: Event
1377
- onError: Event
1378
-
1379
- // keyboard events
1380
- onKeydown: KeyboardEvent
1381
- onKeypress: KeyboardEvent
1382
- onKeyup: KeyboardEvent
1383
-
1384
- // mouse events
1385
- onAuxclick: MouseEvent
1386
- onClick: MouseEvent
1387
- onContextmenu: MouseEvent
1388
- onDblclick: MouseEvent
1389
- onMousedown: MouseEvent
1390
- onMouseenter: MouseEvent
1391
- onMouseleave: MouseEvent
1392
- onMousemove: MouseEvent
1393
- onMouseout: MouseEvent
1394
- onMouseover: MouseEvent
1395
- onMouseup: MouseEvent
1396
-
1397
- // media events
1398
- onAbort: Event
1399
- onCanplay: Event
1400
- onCanplaythrough: Event
1401
- onDurationchange: Event
1402
- onEmptied: Event
1403
- onEncrypted: Event
1404
- onEnded: Event
1405
- onLoadeddata: Event
1406
- onLoadedmetadata: Event
1407
- onLoadstart: Event
1408
- onPause: Event
1409
- onPlay: Event
1410
- onPlaying: Event
1411
- onProgress: Event
1412
- onRatechange: Event
1413
- onSeeked: Event
1414
- onSeeking: Event
1415
- onStalled: Event
1416
- onSuspend: Event
1417
- onTimeupdate: Event
1418
- onVolumechange: Event
1419
- onWaiting: Event
1420
-
1421
- // selection events
1422
- onSelect: Event
1423
-
1424
- // UI events
1425
- onScroll: UIEvent
1426
-
1427
- // touch events
1428
- onTouchcancel: TouchEvent
1429
- onTouchend: TouchEvent
1430
- onTouchmove: TouchEvent
1431
- onTouchstart: TouchEvent
1432
-
1433
- // pointer events
1434
- onPointerdown: PointerEvent
1435
- onPointermove: PointerEvent
1436
- onPointerup: PointerEvent
1437
- onPointercancel: PointerEvent
1438
- onPointerenter: PointerEvent
1439
- onPointerleave: PointerEvent
1440
- onPointerover: PointerEvent
1441
- onPointerout: PointerEvent
1442
-
1443
- // wheel events
1444
- onWheel: WheelEvent
1445
-
1446
- // animation events
1447
- onAnimationstart: AnimationEvent
1448
- onAnimationend: AnimationEvent
1449
- onAnimationiteration: AnimationEvent
1450
-
1451
- // transition events
1452
- onTransitionend: TransitionEvent
1453
- onTransitionstart: TransitionEvent
1454
- }
1455
-
1456
- type EventHandlers<E> = {
1457
- [K in keyof E]?: E[K] extends (...args: any) => any
1458
- ? E[K]
1459
- : (payload: E[K]) => void
1460
- }
1461
-
1462
- // use namespace import to avoid collision with generated types which use
1463
- // named imports.
1464
- import * as RuntimeCore from '@vue/runtime-core'
1465
-
1466
- type ReservedProps = {
1467
- key?: string | number | symbol
1468
- ref?: RuntimeCore.VNodeRef
1469
- ref_for?: boolean
1470
- ref_key?: string
1471
- }
1472
-
1473
- type ElementAttrs<T> = T & ReservedProps
1474
-
1475
- type NativeElements = {
1476
- [K in keyof IntrinsicElementAttributes]: ElementAttrs<
1477
- IntrinsicElementAttributes[K]
1478
- >
1479
- }
1480
-
1481
- declare global {
1482
- namespace JSX {
1483
- interface Element extends VNode {}
1484
- interface ElementClass {
1485
- $props: {}
1486
- }
1487
- interface ElementAttributesProperty {
1488
- $props: {}
1489
- }
1490
- interface IntrinsicElements extends NativeElements {
1491
- // allow arbitrary elements
1492
- // @ts-ignore suppress ts:2374 = Duplicate string index signature.
1493
- [name: string]: any
1494
- }
1495
- interface IntrinsicAttributes extends ReservedProps {}
1496
- }
1497
- }
1498
-
1499
- // suppress ts:2669
1500
- export {}