@types/es-abstract
Version:
TypeScript definitions for es-abstract
11 lines (10 loc) • 358 B
TypeScript
/**
* @throws {TypeError} If `string` or `value` is a `symbol`.
*/
declare function CreateHTML(
string: string | number | bigint | boolean | object | null | undefined, // unknown & not symbol
tag: string,
attribute: string,
value?: string | number | bigint | boolean | object | null, // unknown & not symbol
): string;
export = CreateHTML;