UNPKG

@rickyli79/rich-json

Version:

Serialize and Deserialize javascript objects

8 lines (7 loc) 234 B
type Arrayable<T> = T | T[]; export type StringifyOptions = { pretty?: string | number; excludKeys?: Arrayable<string | RegExp>; }; export declare function stringify(value: any, options?: StringifyOptions): string; export {};