gatelogue-types
    Preparing search index...

    Interface SeaStop<S>

    interface SeaStop<S extends boolean = true> {
        codes: string[];
        company: Sourced<number, S>;
        connections: Record<
            StringID<SeaStop<S>>,
            Sourced<Connection<SeaLine, SeaStop<S>, S>, S>[],
        >;
        coordinates: Sourced<[number, number], S> | null;
        i: number;
        name: Sourced<string, S> | null;
        proximity: Record<
            StringID<Located>,
            Sourced<{ distance: number; explicit: boolean }, S>,
        >;
        shared_facility: Sourced<number, S>[];
        source: string[];
        type: string;
        world: Sourced<World, S> | null;
    }

    Type Parameters

    • S extends boolean = true

    Hierarchy (View Summary)

    Index

    Properties

    codes: string[]
    company: Sourced<number, S>
    connections: Record<
        StringID<SeaStop<S>>,
        Sourced<Connection<SeaLine, SeaStop<S>, S>, S>[],
    >
    coordinates: Sourced<[number, number], S> | null
    i: number
    name: Sourced<string, S> | null
    proximity: Record<
        StringID<Located>,
        Sourced<{ distance: number; explicit: boolean }, S>,
    >
    shared_facility: Sourced<number, S>[]
    source: string[]
    type: string
    world: Sourced<World, S> | null