astro-ghostcms/.pnpm-store/v3/files/31/b4eb8e22cdda953283df1fa85e3...

10 lines
334 B
Plaintext

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;
}