tona-db-mini
Version:
Tona-DB mini is a JavaScript library for simulating small local databases in JSON.
14 lines (13 loc) • 379 B
TypeScript
/**
* Defines the user-configurable options for MiniDB.
*/
export interface Config {
/** Directory where collections will be stored */
baseDir?: string;
/** Whether to prettify the JSON output */
prettyJson?: boolean;
}
/**
* Default configuration used when the user does not provide one.
*/
export declare const defaultConfig: NonNullable<Required<Config>>;