extended-nmea
Version:
A TypeScript library for parsing NMEA0183-like sentences with support for custom and proprietary sentences.
12 lines (11 loc) • 453 B
TypeScript
import { TalkerSentence } from "../../types/sentences/TalkerSentence";
import { RawNmeaSentence } from "../../types/sentences/RawNmeaSentence";
export declare class DPT extends TalkerSentence {
static readonly ID: string;
constructor(data: RawNmeaSentence);
get depth(): number;
get transducerOffset(): number | null;
get maxDepthRange(): number | null;
get valid(): boolean;
get invalidReason(): null | string;
}