ads-b
Version:
Library for decoding ADS-B messages emitted from Aircraft
18 lines (17 loc) • 482 B
TypeScript
/**
* MIT License
* Copyright (c) 2019 Matt Laver
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/mattlaver/ads-b/blob/master/LICENSE
*/
export declare enum MessageType {
Unknown = "Unknown",
ChecksumFailed = "CheckSumFailed",
AircraftIdentifier = "AircraftIdentifier",
SurfacePosition = "SurfacePosition"
}
export interface IMessage {
messageType: MessageType;
data: {};
}