chainy/node_modules/javascript-stringify/javascript-stringify.d.ts

11 lines
280 B
TypeScript
Raw Normal View History

2020-01-26 19:03:32 +00:00
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;