UNPKG

all-airports

Version:

Serves as an independent data scraping module, complete with ontology and full scraping ability for the airports of the world

31 lines (30 loc) 1 kB
import { CountryReference, EntityListWrapper, FlatEntity } from "funktologies"; import { AirportNpmSourceObject } from "../models/airport-npm-source-object"; declare class GlobalStore { LOG_FILE_NAME: string; LOG_STREAM: any; countriesInList: CountryReference[]; debugLogger: any; errorLogger: any; progressLogger: any; airlinesNotFound: string[]; airportsNotFound: string[]; airportTable: { [key: string]: AirportNpmSourceObject; }; failedAirlines: string[]; failedAirports: string[]; jsonLD: FlatEntity[]; jsonNT: string; airports: EntityListWrapper; airlines: EntityListWrapper; countries: EntityListWrapper; elevations: EntityListWrapper; helicopterLandingZones: EntityListWrapper; locations: EntityListWrapper; municipalities: EntityListWrapper; runways: EntityListWrapper; surfaceMaterials: EntityListWrapper; } export declare const store: GlobalStore; export {};