UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

9 lines (8 loc) 295 B
import type { CodeFormat } from './code-format'; export declare class JSONWriter { private readonly indentationType; private readonly indentationSize; constructor(codeFormat?: CodeFormat); write(json: unknown, newLineAtTheEnd?: boolean): string; private get indentation(); }