1 | export function stringify(obj: any, options?: StringifyOptions): string;
|
2 | export function stripBom(content: string): string;
|
3 |
|
4 | export interface StringifyOptions {
|
5 | EOL?: string | undefined;
|
6 | finalEOL?: boolean | undefined;
|
7 | replacer?: ((key: string, value: any) => any) | undefined;
|
8 | spaces?: string | number | undefined;
|
9 | }
|
10 |
|
\ | No newline at end of file |