@signalk/nmea0183-signalk
Version:
A node.js/javascript parser for NMEA0183 sentences. Sentences are parsed to Signal K format.
11 lines • 386 B
TypeScript
/**
* Seatalk1 datagram dispatch table.
*
* Keys are the hex datagram id prefixed with `0x`. `ALK.ts` (and the
* PSMDST proprietary wrapper) look up hooks here after parsing the
* datagram type from the sentence body.
*/
import type { HookFn } from '../../types';
declare const seatalkHooks: Record<string, HookFn>;
export default seatalkHooks;
//# sourceMappingURL=index.d.ts.map