es5.d.ts 179 B

123
  1. declare function ToPrimitive(input: unknown, hint?: StringConstructor | NumberConstructor): null | undefined | string | symbol | number | boolean | bigint;
  2. export = ToPrimitive;