Files
zhibo/node_modules/javascript-stringify/dist/index.d.ts
T
xiaoyu ad03766572 init
2023-05-22 14:18:33 +08:00

12 lines
367 B
TypeScript

import { ToString } from "./types";
export interface Options {
maxDepth?: number;
maxValues?: number;
references?: boolean;
skipUndefinedProperties?: boolean;
}
/**
* Stringify any JavaScript value.
*/
export declare function stringify(value: any, replacer?: ToString | null, indent?: string | number | null, options?: Options): string | undefined;