UNPKG

tfl-api-wrapper

Version:

A Node JS wrapper for the Transport for London API

24 lines (23 loc) 556 B
export interface LondonAirForecast { $id: string; $type: string; updatePeriod: string; updateFrequency: string; forecastURL: string; disclaimerText: string; currentForecast: CurrentForecast[]; } export interface CurrentForecast { $id: string; $type: string; forecastType: string; forecastID: string; forecastBand: string; forecastSummary: string; nO2Band: string; o3Band: string; pM10Band: string; pM25Band: string; sO2Band: string; forecastText: string; }