mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 02:08:16 +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;
|