mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
8 lines
482 B
TypeScript
8 lines
482 B
TypeScript
// Type definitions for circular-json 0.4
|
|
// Project: https://github.com/WebReflection/circular-json
|
|
// Definitions by: Jonathan Pevarnek <https://github.com/jpevarnek>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export function parse(text: string, reviver?: (key: any, value: any) => any): any;
|
|
export function stringify(value: any, replacer?: ((key: string, value: any) => any) | Array<number | string> | null, space?: any, placeholder?: boolean): string;
|