* Avoid using this interface directly. Instead use the `SvelteHTMLElements` interface exported by `svelte/elements` * This should only be used if you need to extend the interface with custom elements
| 62 | * This should only be used if you need to extend the interface with custom elements |
| 63 | */ |
| 64 | interface IntrinsicElements extends svelteElements.SvelteHTMLElements { |
| 65 | a: HTMLProps<'a', HTMLAttributes>; |
| 66 | abbr: HTMLProps<'abbr', HTMLAttributes>; |
| 67 | address: HTMLProps<'address', HTMLAttributes>; |
| 68 | area: HTMLProps<'area', HTMLAttributes>; |
| 69 | article: HTMLProps<'article', HTMLAttributes>; |
| 70 | aside: HTMLProps<'aside', HTMLAttributes>; |
| 71 | audio: HTMLProps<'audio', HTMLAttributes>; |
| 72 | b: HTMLProps<'b', HTMLAttributes>; |
| 73 | base: HTMLProps<'base', HTMLAttributes>; |
| 74 | bdi: HTMLProps<'bdi', HTMLAttributes>; |
| 75 | bdo: HTMLProps<'bdo', HTMLAttributes>; |
| 76 | big: HTMLProps<'big', HTMLAttributes>; |
| 77 | blockquote: HTMLProps<'blockquote', HTMLAttributes>; |
| 78 | body: HTMLProps<'body', HTMLAttributes>; |
| 79 | br: HTMLProps<'br', HTMLAttributes>; |
| 80 | button: HTMLProps<'button', HTMLAttributes>; |
| 81 | canvas: HTMLProps<'canvas', HTMLAttributes>; |
| 82 | caption: HTMLProps<'caption', HTMLAttributes>; |
| 83 | cite: HTMLProps<'cite', HTMLAttributes>; |
| 84 | code: HTMLProps<'code', HTMLAttributes>; |
| 85 | col: HTMLProps<'col', HTMLAttributes>; |
| 86 | colgroup: HTMLProps<'colgroup', HTMLAttributes>; |
| 87 | data: HTMLProps<'data', HTMLAttributes>; |
| 88 | datalist: HTMLProps<'datalist', HTMLAttributes>; |
| 89 | dd: HTMLProps<'dd', HTMLAttributes>; |
| 90 | del: HTMLProps<'del', HTMLAttributes>; |
| 91 | details: HTMLProps<'details', HTMLAttributes>; |
| 92 | dfn: HTMLProps<'dfn', HTMLAttributes>; |
| 93 | dialog: HTMLProps<'dialog', HTMLAttributes>; |
| 94 | div: HTMLProps<'div', HTMLAttributes>; |
| 95 | dl: HTMLProps<'dl', HTMLAttributes>; |
| 96 | dt: HTMLProps<'dt', HTMLAttributes>; |
| 97 | em: HTMLProps<'em', HTMLAttributes>; |
| 98 | embed: HTMLProps<'embed', HTMLAttributes>; |
| 99 | fieldset: HTMLProps<'fieldset', HTMLAttributes>; |
| 100 | figcaption: HTMLProps<'figcaption', HTMLAttributes>; |
| 101 | figure: HTMLProps<'figure', HTMLAttributes>; |
| 102 | footer: HTMLProps<'footer', HTMLAttributes>; |
| 103 | form: HTMLProps<'form', HTMLAttributes>; |
| 104 | h1: HTMLProps<'h1', HTMLAttributes>; |
| 105 | h2: HTMLProps<'h2', HTMLAttributes>; |
| 106 | h3: HTMLProps<'h3', HTMLAttributes>; |
| 107 | h4: HTMLProps<'h4', HTMLAttributes>; |
| 108 | h5: HTMLProps<'h5', HTMLAttributes>; |
| 109 | h6: HTMLProps<'h6', HTMLAttributes>; |
| 110 | head: HTMLProps<'head', HTMLAttributes>; |
| 111 | header: HTMLProps<'header', HTMLAttributes>; |
| 112 | hgroup: HTMLProps<'hgroup', HTMLAttributes>; |
| 113 | hr: HTMLProps<'hr', HTMLAttributes>; |
| 114 | html: HTMLProps<'html', HTMLAttributes>; |
| 115 | i: HTMLProps<'i', HTMLAttributes>; |
| 116 | iframe: HTMLProps<'iframe', HTMLAttributes>; |
| 117 | img: HTMLProps<'img', HTMLAttributes>; |
| 118 | input: HTMLProps<'input', HTMLAttributes>; |
| 119 | ins: HTMLProps<'ins', HTMLAttributes>; |
| 120 | kbd: HTMLProps<'kbd', HTMLAttributes>; |
| 121 | keygen: HTMLProps<'keygen', HTMLAttributes>; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…