bailiff
Version:
A config manager
11 lines (10 loc) • 345 B
TypeScript
import NodeCache from 'node-cache';
export default class CentralStore {
static jsonConfigFile: string;
static nodeCache: NodeCache;
static get(name: string): unknown;
static loadCentralConfigs(): Promise<void>;
private static __parseResultAsJsonString;
private static __mongoUrl;
private static __searchInJsonFile;
}