UNPKG

358 BTypeScriptView Raw
1/**
2 * @throws {TypeError} If `string` or `value` is a `symbol`.
3 */
4declare function CreateHTML(
5 string: string | number | bigint | boolean | object | null | undefined, // unknown & not symbol
6 tag: string,
7 attribute: string,
8 value?: string | number | bigint | boolean | object | null, // unknown & not symbol
9): string;
10export = CreateHTML;