HtmlTag
ts
type HtmlTag = object;Defined in: plugin/vite.ts:27
Properties
attrs?
ts
optional attrs: Record<string, string | boolean>;Defined in: plugin/vite.ts:29
children?
ts
optional children: string | HtmlTag[];Defined in: plugin/vite.ts:30
injectTo?
ts
optional injectTo: "head" | "body" | "head-prepend" | "body-prepend";Defined in: plugin/vite.ts:31
tag
ts
tag: string;Defined in: plugin/vite.ts:28