aboutsummaryrefslogtreecommitdiff
path: root/node_modules/javascript-stringify/javascript-stringify.d.ts
blob: 046116a8b4a88ae67de3a4f6cd73e0060a9a9ccc (plain)
1
2
3
4
5
6
7
8
9
10
declare function stringify (value: any, replacer?: Function, space?: string | number, options?: javascriptStringify.Options): string;

declare namespace javascriptStringify {
  export interface Options {
    maxDepth?: number;
    references?: boolean;
  }
}

export = stringify;