UNPKG

extended-nmea

Version:

A TypeScript library for parsing NMEA0183-like sentences with support for custom and proprietary sentences.

16 lines (15 loc) 527 B
import { INmeaSentence } from "./INmeaSentence"; export interface IQuerySentence extends INmeaSentence { /** * Returns the first two characters in the first field as per NMEA0183 standard. */ readonly talkerId: string; /** * Returns the first third and fourth characters in the first field as per NMEA0183 standard. */ readonly listenerId: string; /** * The mnemonic being requested by the listener. Usually three characters. */ readonly mnemonic: string; }