astock-agent/frontend/node_modules/es-to-primitive/es2015.d.ts
2026-04-07 20:51:00 +08:00

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;