mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-23 04:25:21 +08:00
12 lines
367 B
TypeScript
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;
|