@fromjs/backend
Version:
6 lines (5 loc) • 402 B
TypeScript
declare const nativeParse: (text: string, reviver?: ((this: any, key: string, value: any) => any) | undefined) => any;
declare const nativeStringify: {
(value: any, replacer?: ((this: any, key: string, value: any) => any) | undefined, space?: string | number | undefined): string;
(value: any, replacer?: (string | number)[] | null | undefined, space?: string | number | undefined): string;
};