Description

Location data type

interface Location {
    code: null | string;
    id: string;
    name: string;
    type: "region" | "prefecture" | "city";
}

Properties

Properties

code: null | string
id: string
name: string
type: "region" | "prefecture" | "city"

Generated using TypeDoc