metar-decoder
Version:
Convert METAR weather reports to JavaScript objects
17 lines (16 loc) • 308 B
TypeScript
interface ICloud {
name: string;
code: string;
density: string;
}
export declare const clouds: ICloud[];
export declare const rvrTrend: {
[k: string]: string;
};
export declare const weather: {
[k: string]: string;
};
export declare const trends: {
[k: string]: string;
};
export {};