/** * Registry of per-sentence hook functions keyed by NMEA sentence id. * * When adding a new NMEA sentence: * 1. Create `./.ts` exporting a default HookFn. * 2. Add the import and the key below. * 3. Add tests under `test/.ts`. */ import type { HookFn } from '../types'; declare const hooks: Record; export default hooks; //# sourceMappingURL=index.d.ts.map