moonlifedb
Version:
A JSON database with a bunch of tools and typescript support.
13 lines (12 loc) • 426 B
TypeScript
export declare class JSONFormatter {
whitespace: number | '\t';
/**
* JSONFormatter constructor
* Use this as constructor for tabulation and lines.
* @param options
* @param whitespace number, "tab" or "\t". Number means how much spaces to use after. "tab" is tabulation.
*/
constructor(options?: {
whitespace?: number | 'tab' | '\t' | undefined;
} | undefined);
}