UNPKG

208 BTypeScriptView Raw
1type primitive = null | undefined | string | symbol | number | boolean | bigint;
2
3declare function ToPrimitive(input: unknown, hint?: StringConstructor | NumberConstructor): primitive;
4
5export = ToPrimitive;