mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-11 03:18:14 +08:00
6 lines
208 B
TypeScript
6 lines
208 B
TypeScript
|
type primitive = null | undefined | string | symbol | number | boolean | bigint;
|
||
|
|
||
|
declare function ToPrimitive(input: unknown, hint?: StringConstructor | NumberConstructor): primitive;
|
||
|
|
||
|
export = ToPrimitive;
|