5 lines
345 B
Plaintext
5 lines
345 B
Plaintext
export function parse(text: string, reviver?: (this: any, key: string, value: any) => any): any;
|
|
export function stringify(value: any, replacer?: (string | number)[] | ((this: any, key: string, value: any) => any), space?: string | number | undefined): string;
|
|
export function toJSON(value: any): any;
|
|
export function fromJSON(value: any): any;
|