1 | // Type definitions for circular-json 0.4
|
2 | // Project: https://github.com/WebReflection/circular-json
|
3 | // Definitions by: Jonathan Pevarnek <https://github.com/jpevarnek>
|
4 | // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
5 |
|
6 | export function parse(text: string, reviver?: (key: any, value: any) => any): any;
|
7 | export function stringify(value: any, replacer?: ((key: string, value: any) => any) | Array<number | string> | null, space?: any, placeholder?: boolean): string;
|