UNPKG

signalk-server

Version:

An implementation of a [Signal K](http://signalk.org) server for boats.

11 lines (10 loc) 325 B
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; }