UNPKG

@mann-conomy/vdf-utils

Version:

A Node.js utility library for parsing and converting objects in Valve's Data File (VDF) format.

10 lines (9 loc) 288 B
export default class VdfBuilder { private readonly lines; private readonly separator; private readonly indentation; constructor(indentation: number); getIndentationLevel(): string; newline(key: string, value: string, nested: boolean): void; toVdf(): string; }