Public Access
mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-11 02:23:22 -04: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;
|