UNPKG

signalk-server

Version:

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

16 lines 493 B
import { AppStoreCache } from './cache'; interface InstalledModuleLike { packageName?: string; name?: string; version?: string; id?: string; } interface AppLike { plugins?: InstalledModuleLike[]; webapps?: InstalledModuleLike[]; addons?: InstalledModuleLike[]; embeddablewebapps?: InstalledModuleLike[]; } export declare function buildOfflineResponse(app: AppLike, cache: AppStoreCache): Record<string, unknown>; export {}; //# sourceMappingURL=offline.d.ts.map