json-bigint.d.ts 197 B

1234
  1. declare module 'json-bigint' {
  2. export interface JSONBig { parse(text: string): any; stringify(obj: any): string }
  3. export default function JSONBig(opts?: { storeAsString?: boolean }): JSONBig
  4. }