interface HtmlTagDescriptor {
    attrs?: Record<string, undefined | string | boolean>;
    children?: string | HtmlTagDescriptor[];
    injectTo?: "head" | "body" | "head-prepend" | "body-prepend";
    tag: string;
}

Properties

attrs?: Record<string, undefined | string | boolean>
children?: string | HtmlTagDescriptor[]
injectTo?: "head" | "body" | "head-prepend" | "body-prepend"

default: 'head-prepend'

tag: string