UNPKG

extended-nmea

Version:

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

8 lines (7 loc) 274 B
import { INmeaSentence } from "./INmeaSentence"; export interface IProprietarySentence extends INmeaSentence { /** * Returns the manufacturer id (i.e. the first field in the sentence, excluding the prefix "P"). */ readonly manufacturerId: string; }