interface RailStation {
    area?: null | RailArea;
    areaId: string;
    code: string;
    id: string;
    line?: null | RailLine;
    lineId: string;
    name: string;
    orderNum: number;
    point: {
        coordinates: number[];
        type: "Point";
    };
}

Implemented by

Properties

area?: null | RailArea
areaId: string
code: string
id: string
line?: null | RailLine
lineId: string
name: string
orderNum: number
point: {
    coordinates: number[];
    type: "Point";
}

Type declaration

  • coordinates: number[]
  • type: "Point"

Generated using TypeDoc