deno.land / x / hono@v4.2.5 / jsx / intrinsic-elements.ts

intrinsic-elements.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
/* eslint-disable @typescript-eslint/no-explicit-any */
/** * This code is based on React. * https://github.com/facebook/react * MIT License * Copyright (c) Meta Platforms, Inc. and affiliates. */
declare global { // eslint-disable-next-line @typescript-eslint/no-namespace namespace Hono { type CrossOrigin = 'anonymous' | 'use-credentials' | '' | undefined type CSSProperties = {} type AnyAttributes = { [attributeName: string]: any }
interface JSXAttributes { dangerouslySetInnerHTML?: { __html: string } }
interface EventAttributes { onScroll?: (event: Event) => void onScrollCapture?: (event: Event) => void onScrollEnd?: (event: Event) => void onScrollEndCapture?: (event: Event) => void onWheel?: (event: WheelEvent) => void onWheelCapture?: (event: WheelEvent) => void onAnimationCancel?: (event: AnimationEvent) => void onAnimationCancelCapture?: (event: AnimationEvent) => void onAnimationEnd?: (event: AnimationEvent) => void onAnimationEndCapture?: (event: AnimationEvent) => void onAnimationIteration?: (event: AnimationEvent) => void onAnimationIterationCapture?: (event: AnimationEvent) => void onAnimationStart?: (event: AnimationEvent) => void onAnimationStartCapture?: (event: AnimationEvent) => void onCopy?: (event: ClipboardEvent) => void onCopyCapture?: (event: ClipboardEvent) => void onCut?: (event: ClipboardEvent) => void onCutCapture?: (event: ClipboardEvent) => void onPaste?: (event: ClipboardEvent) => void onPasteCapture?: (event: ClipboardEvent) => void onCompositionEnd?: (event: CompositionEvent) => void onCompositionEndCapture?: (event: CompositionEvent) => void onCompositionStart?: (event: CompositionEvent) => void onCompositionStartCapture?: (event: CompositionEvent) => void onCompositionUpdate?: (event: CompositionEvent) => void onCompositionUpdateCapture?: (event: CompositionEvent) => void onBlur?: (event: FocusEvent) => void onBlurCapture?: (event: FocusEvent) => void onFocus?: (event: FocusEvent) => void onFocusCapture?: (event: FocusEvent) => void onFocusIn?: (event: FocusEvent) => void onFocusInCapture?: (event: FocusEvent) => void onFocusOut?: (event: FocusEvent) => void onFocusOutCapture?: (event: FocusEvent) => void onFullscreenChange?: (event: Event) => void onFullscreenChangeCapture?: (event: Event) => void onFullscreenError?: (event: Event) => void onFullscreenErrorCapture?: (event: Event) => void onKeyDown?: (event: KeyboardEvent) => void onKeyDownCapture?: (event: KeyboardEvent) => void onKeyPress?: (event: KeyboardEvent) => void onKeyPressCapture?: (event: KeyboardEvent) => void onKeyUp?: (event: KeyboardEvent) => void onKeyUpCapture?: (event: KeyboardEvent) => void onAuxClick?: (event: MouseEvent) => void onAuxClickCapture?: (event: MouseEvent) => void onClick?: (event: MouseEvent) => void onClickCapture?: (event: MouseEvent) => void onContextMenu?: (event: MouseEvent) => void onContextMenuCapture?: (event: MouseEvent) => void onDoubleClick?: (event: MouseEvent) => void onDoubleClickCapture?: (event: MouseEvent) => void onMouseDown?: (event: MouseEvent) => void onMouseDownCapture?: (event: MouseEvent) => void onMouseEnter?: (event: MouseEvent) => void onMouseEnterCapture?: (event: MouseEvent) => void onMouseLeave?: (event: MouseEvent) => void onMouseLeaveCapture?: (event: MouseEvent) => void onMouseMove?: (event: MouseEvent) => void onMouseMoveCapture?: (event: MouseEvent) => void onMouseOut?: (event: MouseEvent) => void onMouseOutCapture?: (event: MouseEvent) => void onMouseOver?: (event: MouseEvent) => void onMouseOverCapture?: (event: MouseEvent) => void onMouseUp?: (event: MouseEvent) => void onMouseUpCapture?: (event: MouseEvent) => void onMouseWheel?: (event: WheelEvent) => void onMouseWheelCapture?: (event: WheelEvent) => void onGotPointerCapture?: (event: PointerEvent) => void onGotPointerCaptureCapture?: (event: PointerEvent) => void onLostPointerCapture?: (event: PointerEvent) => void onLostPointerCaptureCapture?: (event: PointerEvent) => void onPointerCancel?: (event: PointerEvent) => void onPointerCancelCapture?: (event: PointerEvent) => void onPointerDown?: (event: PointerEvent) => void onPointerDownCapture?: (event: PointerEvent) => void onPointerEnter?: (event: PointerEvent) => void onPointerEnterCapture?: (event: PointerEvent) => void onPointerLeave?: (event: PointerEvent) => void onPointerLeaveCapture?: (event: PointerEvent) => void onPointerMove?: (event: PointerEvent) => void onPointerMoveCapture?: (event: PointerEvent) => void onPointerOut?: (event: PointerEvent) => void onPointerOutCapture?: (event: PointerEvent) => void onPointerOver?: (event: PointerEvent) => void onPointerOverCapture?: (event: PointerEvent) => void onPointerUp?: (event: PointerEvent) => void onPointerUpCapture?: (event: PointerEvent) => void onTouchCancel?: (event: TouchEvent) => void onTouchCancelCapture?: (event: TouchEvent) => void onTouchEnd?: (event: TouchEvent) => void onTouchEndCapture?: (event: TouchEvent) => void onTouchMove?: (event: TouchEvent) => void onTouchMoveCapture?: (event: TouchEvent) => void onTouchStart?: (event: TouchEvent) => void onTouchStartCapture?: (event: TouchEvent) => void onTransitionCancel?: (event: TransitionEvent) => void onTransitionCancelCapture?: (event: TransitionEvent) => void onTransitionEnd?: (event: TransitionEvent) => void onTransitionEndCapture?: (event: TransitionEvent) => void onTransitionRun?: (event: TransitionEvent) => void onTransitionRunCapture?: (event: TransitionEvent) => void onTransitionStart?: (event: TransitionEvent) => void onTransitionStartCapture?: (event: TransitionEvent) => void onFormData?: (event: FormDataEvent) => void onFormDataCapture?: (event: FormDataEvent) => void onReset?: (event: Event) => void onResetCapture?: (event: Event) => void onSubmit?: (event: Event) => void onSubmitCapture?: (event: Event) => void onInvalid?: (event: Event) => void onInvalidCapture?: (event: Event) => void onSelect?: (event: Event) => void onSelectCapture?: (event: Event) => void onSelectChange?: (event: Event) => void onSelectChangeCapture?: (event: Event) => void onInput?: (event: InputEvent) => void onInputCapture?: (event: InputEvent) => void onBeforeInput?: (event: InputEvent) => void onBeforeInputCapture?: (event: InputEvent) => void onChange?: (event: Event) => void onChangeCapture?: (event: Event) => void }
interface HTMLAttributes extends JSXAttributes, EventAttributes, AnyAttributes { accesskey?: string | undefined autofocus?: boolean | undefined class?: string | Promise<string> | undefined contenteditable?: boolean | 'inherit' | undefined contextmenu?: string | undefined dir?: string | undefined draggable?: boolean | undefined hidden?: boolean | undefined id?: string | undefined lang?: string | undefined nonce?: string | undefined placeholder?: string | undefined slot?: string | undefined spellcheck?: boolean | undefined style?: CSSProperties | undefined tabindex?: number | undefined title?: string | undefined translate?: 'yes' | 'no' | undefined }
type HTMLAttributeReferrerPolicy = | '' | 'no-referrer' | 'no-referrer-when-downgrade' | 'origin' | 'origin-when-cross-origin' | 'same-origin' | 'strict-origin' | 'strict-origin-when-cross-origin' | 'unsafe-url'
type HTMLAttributeAnchorTarget = '_self' | '_blank' | '_parent' | '_top' | string
interface AnchorHTMLAttributes extends HTMLAttributes { download?: any href?: string | undefined hreflang?: string | undefined media?: string | undefined ping?: string | undefined target?: HTMLAttributeAnchorTarget | undefined type?: string | undefined referrerpolicy?: HTMLAttributeReferrerPolicy | undefined }
interface AudioHTMLAttributes extends MediaHTMLAttributes {}
interface AreaHTMLAttributes extends HTMLAttributes { alt?: string | undefined coords?: string | undefined download?: any href?: string | undefined hreflang?: string | undefined media?: string | undefined referrerpolicy?: HTMLAttributeReferrerPolicy | undefined shape?: string | undefined target?: string | undefined }
interface BaseHTMLAttributes extends HTMLAttributes { href?: string | undefined target?: string | undefined }
interface BlockquoteHTMLAttributes extends HTMLAttributes { cite?: string | undefined }
interface ButtonHTMLAttributes extends HTMLAttributes { disabled?: boolean | undefined form?: string | undefined formenctype?: string | undefined formmethod?: string | undefined formnovalidate?: boolean | undefined formtarget?: string | undefined name?: string | undefined type?: 'submit' | 'reset' | 'button' | undefined value?: string | ReadonlyArray<string> | number | undefined }
interface CanvasHTMLAttributes extends HTMLAttributes { height?: number | string | undefined width?: number | string | undefined }
interface ColHTMLAttributes extends HTMLAttributes { span?: number | undefined width?: number | string | undefined }
interface ColgroupHTMLAttributes extends HTMLAttributes { span?: number | undefined }
interface DataHTMLAttributes extends HTMLAttributes { value?: string | ReadonlyArray<string> | number | undefined }
interface DetailsHTMLAttributes extends HTMLAttributes { open?: boolean | undefined }
interface DelHTMLAttributes extends HTMLAttributes { cite?: string | undefined dateTime?: string | undefined }
interface DialogHTMLAttributes extends HTMLAttributes { open?: boolean | undefined }
interface EmbedHTMLAttributes extends HTMLAttributes { height?: number | string | undefined src?: string | undefined type?: string | undefined width?: number | string | undefined }
interface FieldsetHTMLAttributes extends HTMLAttributes { disabled?: boolean | undefined form?: string | undefined name?: string | undefined }
interface FormHTMLAttributes extends HTMLAttributes { 'accept-charset'?: string | undefined autocomplete?: string | undefined enctype?: string | undefined method?: string | undefined name?: string | undefined novalidate?: boolean | undefined target?: string | undefined }
interface HtmlHTMLAttributes extends HTMLAttributes { manifest?: string | undefined }
interface IframeHTMLAttributes extends HTMLAttributes { allow?: string | undefined allowfullscreen?: boolean | undefined height?: number | string | undefined loading?: 'eager' | 'lazy' | undefined name?: string | undefined referrerpolicy?: HTMLAttributeReferrerPolicy | undefined sandbox?: string | undefined seamless?: boolean | undefined src?: string | undefined srcdoc?: string | undefined width?: number | string | undefined }
interface ImgHTMLAttributes extends HTMLAttributes { alt?: string | undefined crossorigin?: CrossOrigin decoding?: 'async' | 'auto' | 'sync' | undefined height?: number | string | undefined loading?: 'eager' | 'lazy' | undefined referrerpolicy?: HTMLAttributeReferrerPolicy | undefined sizes?: string | undefined src?: string | undefined srcset?: string | undefined usemap?: string | undefined width?: number | string | undefined }
interface InsHTMLAttributes extends HTMLAttributes { cite?: string | undefined datetime?: string | undefined }
type HTMLInputTypeAttribute = | 'button' | 'checkbox' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'radio' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'text' | 'time' | 'url' | 'week' | string
interface InputHTMLAttributes extends HTMLAttributes { accept?: string | undefined alt?: string | undefined autocomplete?: string | undefined capture?: boolean | 'user' | 'environment' | undefined // https://www.w3.org/TR/html-media-capture/#the-capture-attribute checked?: boolean | undefined disabled?: boolean | undefined enterkeyhint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send' | undefined form?: string | undefined formenctype?: string | undefined formmethod?: string | undefined formnovalidate?: boolean | undefined formtarget?: string | undefined height?: number | string | undefined list?: string | undefined max?: number | string | undefined maxlength?: number | undefined min?: number | string | undefined minlength?: number | undefined multiple?: boolean | undefined name?: string | undefined pattern?: string | undefined placeholder?: string | undefined readonly?: boolean | undefined required?: boolean | undefined size?: number | undefined src?: string | undefined step?: number | string | undefined type?: HTMLInputTypeAttribute | undefined value?: string | ReadonlyArray<string> | number | undefined width?: number | string | undefined }
interface KeygenHTMLAttributes extends HTMLAttributes { challenge?: string | undefined disabled?: boolean | undefined form?: string | undefined keytype?: string | undefined name?: string | undefined }
interface LabelHTMLAttributes extends HTMLAttributes { form?: string | undefined for?: string | undefined }
interface LiHTMLAttributes extends HTMLAttributes { value?: string | ReadonlyArray<string> | number | undefined }
interface LinkHTMLAttributes extends HTMLAttributes { as?: string | undefined crossorigin?: CrossOrigin href?: string | undefined hreflang?: string | undefined integrity?: string | undefined media?: string | undefined imagesrcset?: string | undefined imagesizes?: string | undefined referrerpolicy?: HTMLAttributeReferrerPolicy | undefined sizes?: string | undefined type?: string | undefined charSet?: string | undefined }
interface MapHTMLAttributes extends HTMLAttributes { name?: string | undefined }
interface MenuHTMLAttributes extends HTMLAttributes { type?: string | undefined }
interface MediaHTMLAttributes extends HTMLAttributes { autoplay?: boolean | undefined controls?: boolean | undefined controlslist?: string | undefined crossorigin?: CrossOrigin loop?: boolean | undefined mediagroup?: string | undefined muted?: boolean | undefined playsinline?: boolean | undefined preload?: string | undefined src?: string | undefined }
interface MetaHTMLAttributes extends HTMLAttributes { charset?: string | undefined 'http-equiv'?: string | undefined name?: string | undefined media?: string | undefined content?: string | undefined }
interface MeterHTMLAttributes extends HTMLAttributes { form?: string | undefined high?: number | undefined low?: number | undefined max?: number | string | undefined min?: number | string | undefined optimum?: number | undefined value?: string | ReadonlyArray<string> | number | undefined }
interface QuoteHTMLAttributes extends HTMLAttributes { cite?: string | undefined }
interface ObjectHTMLAttributes extends HTMLAttributes { data?: string | undefined form?: string | undefined height?: number | string | undefined name?: string | undefined type?: string | undefined usemap?: string | undefined width?: number | string | undefined }
interface OlHTMLAttributes extends HTMLAttributes { reversed?: boolean | undefined start?: number | undefined type?: '1' | 'a' | 'A' | 'i' | 'I' | undefined }
interface OptgroupHTMLAttributes extends HTMLAttributes { disabled?: boolean | undefined label?: string | undefined }
interface OptionHTMLAttributes extends HTMLAttributes { disabled?: boolean | undefined label?: string | undefined selected?: boolean | undefined value?: string | ReadonlyArray<string> | number | undefined }
interface OutputHTMLAttributes extends HTMLAttributes { form?: string | undefined for?: string | undefined name?: string | undefined }
interface ParamHTMLAttributes extends HTMLAttributes { name?: string | undefined value?: string | ReadonlyArray<string> | number | undefined }
interface ProgressHTMLAttributes extends HTMLAttributes { max?: number | string | undefined value?: string | ReadonlyArray<string> | number | undefined }
interface SlotHTMLAttributes extends HTMLAttributes { name?: string | undefined }
interface ScriptHTMLAttributes extends HTMLAttributes { async?: boolean | undefined crossorigin?: CrossOrigin defer?: boolean | undefined integrity?: string | undefined nomodule?: boolean | undefined referrerpolicy?: HTMLAttributeReferrerPolicy | undefined src?: string | undefined type?: string | undefined }
interface SelectHTMLAttributes extends HTMLAttributes { autocomplete?: string | undefined disabled?: boolean | undefined form?: string | undefined multiple?: boolean | undefined name?: string | undefined required?: boolean | undefined size?: number | undefined value?: string | ReadonlyArray<string> | number | undefined }
interface SourceHTMLAttributes extends HTMLAttributes { height?: number | string | undefined media?: string | undefined sizes?: string | undefined src?: string | undefined srcset?: string | undefined type?: string | undefined width?: number | string | undefined }
interface StyleHTMLAttributes extends HTMLAttributes { media?: string | undefined scoped?: boolean | undefined type?: string | undefined }
interface TableHTMLAttributes extends HTMLAttributes { align?: 'left' | 'center' | 'right' | undefined bgcolor?: string | undefined border?: number | undefined cellpadding?: number | string | undefined cellspacing?: number | string | undefined frame?: boolean | undefined rules?: 'none' | 'groups' | 'rows' | 'columns' | 'all' | undefined summary?: string | undefined width?: number | string | undefined }
interface TextareaHTMLAttributes extends HTMLAttributes { autocomplete?: string | undefined cols?: number | undefined dirname?: string | undefined disabled?: boolean | undefined form?: string | undefined maxlength?: number | undefined minlength?: number | undefined name?: string | undefined placeholder?: string | undefined readonly?: boolean | undefined required?: boolean | undefined rows?: number | undefined value?: string | ReadonlyArray<string> | number | undefined wrap?: string | undefined }
interface TdHTMLAttributes extends HTMLAttributes { align?: 'left' | 'center' | 'right' | 'justify' | 'char' | undefined colspan?: number | undefined headers?: string | undefined rowspan?: number | undefined scope?: string | undefined abbr?: string | undefined height?: number | string | undefined width?: number | string | undefined valign?: 'top' | 'middle' | 'bottom' | 'baseline' | undefined }
interface ThHTMLAttributes extends HTMLAttributes { align?: 'left' | 'center' | 'right' | 'justify' | 'char' | undefined colspan?: number | undefined headers?: string | undefined rowspan?: number | undefined scope?: string | undefined abbr?: string | undefined }
interface TimeHTMLAttributes extends HTMLAttributes { datetime?: string | undefined }
interface TrackHTMLAttributes extends HTMLAttributes { default?: boolean | undefined kind?: string | undefined label?: string | undefined src?: string | undefined srclang?: string | undefined }
interface VideoHTMLAttributes extends MediaHTMLAttributes { height?: number | string | undefined playsinline?: boolean | undefined poster?: string | undefined width?: number | string | undefined disablePictureInPicture?: boolean | undefined disableRemotePlayback?: boolean | undefined }
interface IntrinsicElements { a: AnchorHTMLAttributes abbr: HTMLAttributes address: HTMLAttributes area: AreaHTMLAttributes article: HTMLAttributes aside: HTMLAttributes audio: AudioHTMLAttributes b: HTMLAttributes base: BaseHTMLAttributes bdi: HTMLAttributes bdo: HTMLAttributes big: HTMLAttributes blockquote: BlockquoteHTMLAttributes body: HTMLAttributes br: HTMLAttributes button: ButtonHTMLAttributes canvas: CanvasHTMLAttributes caption: HTMLAttributes center: HTMLAttributes cite: HTMLAttributes code: HTMLAttributes col: ColHTMLAttributes colgroup: ColgroupHTMLAttributes data: DataHTMLAttributes datalist: HTMLAttributes dd: HTMLAttributes del: DelHTMLAttributes details: DetailsHTMLAttributes dfn: HTMLAttributes dialog: DialogHTMLAttributes div: HTMLAttributes dl: HTMLAttributes dt: HTMLAttributes em: HTMLAttributes embed: EmbedHTMLAttributes fieldset: FieldsetHTMLAttributes figcaption: HTMLAttributes figure: HTMLAttributes footer: HTMLAttributes form: FormHTMLAttributes h1: HTMLAttributes h2: HTMLAttributes h3: HTMLAttributes h4: HTMLAttributes h5: HTMLAttributes h6: HTMLAttributes head: HTMLAttributes header: HTMLAttributes hgroup: HTMLAttributes hr: HTMLAttributes html: HtmlHTMLAttributes i: HTMLAttributes iframe: IframeHTMLAttributes img: ImgHTMLAttributes input: InputHTMLAttributes ins: InsHTMLAttributes kbd: HTMLAttributes keygen: KeygenHTMLAttributes label: LabelHTMLAttributes legend: HTMLAttributes li: LiHTMLAttributes link: LinkHTMLAttributes main: HTMLAttributes map: MapHTMLAttributes mark: HTMLAttributes menu: MenuHTMLAttributes menuitem: HTMLAttributes meta: MetaHTMLAttributes meter: MeterHTMLAttributes nav: HTMLAttributes noscript: HTMLAttributes object: ObjectHTMLAttributes ol: OlHTMLAttributes optgroup: OptgroupHTMLAttributes option: OptionHTMLAttributes output: OutputHTMLAttributes p: HTMLAttributes param: ParamHTMLAttributes picture: HTMLAttributes pre: HTMLAttributes progress: ProgressHTMLAttributes q: QuoteHTMLAttributes rp: HTMLAttributes rt: HTMLAttributes ruby: HTMLAttributes s: HTMLAttributes samp: HTMLAttributes search: HTMLAttributes slot: SlotHTMLAttributes script: ScriptHTMLAttributes section: HTMLAttributes select: SelectHTMLAttributes small: HTMLAttributes source: SourceHTMLAttributes span: HTMLAttributes strong: HTMLAttributes style: StyleHTMLAttributes sub: HTMLAttributes summary: HTMLAttributes sup: HTMLAttributes table: TableHTMLAttributes template: HTMLAttributes tbody: HTMLAttributes td: TdHTMLAttributes textarea: TextareaHTMLAttributes tfoot: HTMLAttributes th: ThHTMLAttributes thead: HTMLAttributes time: TimeHTMLAttributes title: HTMLAttributes tr: HTMLAttributes track: TrackHTMLAttributes u: HTMLAttributes ul: HTMLAttributes var: HTMLAttributes video: VideoHTMLAttributes wbr: HTMLAttributes } }}
export interface IntrinsicElements extends Hono.IntrinsicElements {}
hono

Version Info

Tagged at
a month ago