travel/admin/node_modules/javascript-stringify/dist/index.d.ts

12 lines
367 B
TypeScript
Raw Normal View History

2024-06-24 11:28:18 +08:00
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;