This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/javascript-stringify/javascript-stringify.d.ts
2019-08-11 20:48:02 +02:00

10 lines
280 B
TypeScript

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;