UNPKG

extended-nmea

Version:

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

10 lines (9 loc) 370 B
import { TalkerSentence } from "../../types/sentences/TalkerSentence"; import { RawNmeaSentence } from "../../types/sentences/RawNmeaSentence"; export declare class HDT extends TalkerSentence { static readonly ID: string; constructor(data: RawNmeaSentence); get heading(): number; get valid(): boolean; get invalidReason(): null | string; }