UNPKG

confn

Version:

A simple to implement config management node js library. Setup dev, staging, production, etc. config for your node app effortlessly.

14 lines (12 loc) 390 B
/** * @Base abstract base class for confm stores */ abstract class Base { public abstract set(key: string, value: any): boolean; public abstract get(key: string): any; public abstract fetch(): any; public abstract override(key: string, value: any): boolean; public abstract hardSet(key: string, value: any): boolean; public abstract getName(): string; } export default Base;