flomo-terminal
Version:
terminal program for flomo
9 lines (8 loc) • 330 B
TypeScript
import Datastore from 'nedb-promises';
export declare const getConfigIns: () => Datastore;
export declare function readConfig(key: string): Promise<{
_id: string;
createdAt?: Date | undefined;
updatedAt?: Date | undefined;
}[]>;
export declare function writeConfig(key: string, value?: string): Promise<void>;