javascript-stringify.d.ts 280 Bytes
Newer Older
liang ce committed
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;