Address: {
    city: string;
    country: string;
    countryCode: string;
    county: string;
    house: string;
    street: string;
    tags: Record<string, string>;
    zip: string;
}

Defines an address object.

Type declaration

  • Readonly city: string

    The city of the address.

  • Readonly country: string

    The country of the address.

  • Readonly countryCode: string

    The country as a two letter code.

  • Readonly county: string

    The county/state/province of the address.

  • Readonly house: string

    The house number or house name of the address.

  • Readonly street: string

    The street value of the address.

  • Readonly tags: Record<string, string>

    An object holding POI's (point of interest) as key-value pairs.

  • Readonly zip: string

    The ZIP code of the address.

Generated using TypeDoc