UNPKG

signalk-server

Version:

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

35 lines (34 loc) 868 B
export function StreamBundle(app: any, selfId: any): void; export class StreamBundle { constructor(app: any, selfId: any); selfContext: string; buses: {}; allPathsBus: any; selfBuses: {}; selfAllPathsBus: any; selfStreams: {}; selfAllPathsStream: any; keys: any; availableSelfPaths: {}; app: any; metaSent: {}; metaBus: any; selfMetaBus: any; pushDelta(delta: any): void; push(path: any, pathValueWithSourceAndContext: any): void; getMetaBus(): any; getSelfMetaBus(): any; getBus(path: any): any; getSelfStream(path: any): any; getSelfBus(path: any): any; getAvailablePaths(): string[]; } export function toDelta(normalizedDeltaData: any): { context: any; updates: { [x: string]: any; source: any; $source: any; timestamp: any; }[]; };