You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
367 B
12 lines
367 B
3 years ago
|
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;
|