UNPKG

node-json-db

Version:

Database using JSON file as storage for Node.JS

6 lines (5 loc) 208 B
export interface KeyValue { [key: string]: any; } export declare const merge: (...arrays: KeyValue[]) => KeyValue; export declare const removeTrailingChar: (dataPath: string, trailing: string) => string;