@signalk/nmea0183-signalk
Version:
A node.js/javascript parser for NMEA0183 sentences. Sentences are parsed to Signal K format.
12 lines • 408 B
TypeScript
/**
* Registry of per-sentence hook functions keyed by NMEA sentence id.
*
* When adding a new NMEA sentence:
* 1. Create `./<SENTENCE>.ts` exporting a default HookFn.
* 2. Add the import and the key below.
* 3. Add tests under `test/<SENTENCE>.ts`.
*/
import type { HookFn } from '../types';
declare const hooks: Record<string, HookFn>;
export default hooks;
//# sourceMappingURL=index.d.ts.map