jsonc.d.ts 311 B

12345678
  1. declare const JSONC: {
  2. parse: (text: string) => any;
  3. stringify: {
  4. (value: any, replacer?: (this: any, key: string, value: any) => any, space?: string | number): string;
  5. (value: any, replacer?: (number | string)[] | null, space?: string | number): string;
  6. };
  7. };
  8. export default JSONC;