1 | export declare function parse(s: string): any;
|
2 | export declare function stringify(value: any): string;
|
3 | export declare function stringifyAsync(value: any): string | Promise<string>;
|
4 | export declare function toJSON(value: any): any;
|
5 | export declare function toJSONAsync(value: any): any | Promise<any>;
|
6 | export declare function fromJSON(json: any): any;
|
7 | export { toJSON as toJSONValue, fromJSON as fromJSONValue, fromJSON as revive, toJSON as encapsulate, toJSONAsync as encapsulateAsync, };
|