Html TypeAlias
The Html
type represents anything that can be converted to HTML. Use this type in your functions to accept HTML code.
Signature
export declare type Html = Hypertext | {
__html: string;
} | string | number | boolean | Html[];
The Html
type represents anything that can be converted to HTML. Use this type in your functions to accept HTML code.
export declare type Html = Hypertext | {
__html: string;
} | string | number | boolean | Html[];