signalk-server
Version:
An implementation of a [Signal K](http://signalk.org) server for boats.
11 lines • 360 B
TypeScript
import { WithConfig } from '../app';
export declare const SERVERSTATEDIRNAME = "serverState";
export declare class Store {
private filePath;
private fileName;
constructor(server: WithConfig, storePath: string, fileName?: string);
read(): Promise<any>;
write(data: any): Promise<void>;
private init;
}
//# sourceMappingURL=store.d.ts.map