Interface InputData

interface InputData {
    cityName?: string;
    countryCode?: string;
    countryName?: string;
    geohash?: string;
    lat?: number;
    lon?: number;
    planetName?: string;
    regionName?: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

cityName?: string
countryCode?: string
countryName?: string
geohash?: string
lat?: number
lon?: number
planetName?: string
regionName?: string