@kayahr/edsm
    Preparing search index...

    Interface Station

    interface Station {
        allegiance: string | null;
        body?: StationBody;
        commodities: Commodity[] | null;
        controllingFaction?: StationControllingFaction;
        distanceToArrival: number | null;
        economy: string | null;
        government: string | null;
        haveMarket: boolean;
        haveOutfitting: boolean;
        haveShipyard: boolean;
        id: number;
        marketId: number | null;
        name: string;
        otherServices: string[];
        outfitting: Outfitting[] | null;
        secondEconomy: string | null;
        ships: Ship[] | null;
        systemId?: number;
        systemId64?: Id64 | null;
        systemName?: string;
        type: string | null;
        updateTime: StationUpdateTime;
    }
    Index

    Properties

    allegiance: string | null
    commodities: Commodity[] | null
    controllingFaction?: StationControllingFaction
    distanceToArrival: number | null
    economy: string | null
    government: string | null
    haveMarket: boolean
    haveOutfitting: boolean
    haveShipyard: boolean
    id: number
    marketId: number | null
    name: string
    otherServices: string[]
    outfitting: Outfitting[] | null
    secondEconomy: string | null
    ships: Ship[] | null
    systemId?: number
    systemId64?: Id64 | null
    systemName?: string
    type: string | null
    updateTime: StationUpdateTime