mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
10 lines
334 B
TypeScript
10 lines
334 B
TypeScript
export function stringify(obj: any, options?: StringifyOptions): string;
|
|
export function stripBom(content: string): string;
|
|
|
|
export interface StringifyOptions {
|
|
EOL?: string | undefined;
|
|
finalEOL?: boolean | undefined;
|
|
replacer?: ((key: string, value: any) => any) | undefined;
|
|
spaces?: string | number | undefined;
|
|
}
|