UNPKG

313 BTypeScriptView Raw
1export function stringify(
2 obj: any,
3 options?: {
4 EOL?: string | undefined;
5 finalEOL?: boolean | undefined;
6 replacer?: ((key: string, value: any) => any) | undefined;
7 spaces?: string | number | undefined;
8 },
9): string;
10export function stripBom(content: string): string;