gatelogue-types
    Preparing search index...

    Interface SeaStop<S>

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

    Type Parameters

    • S extends boolean = true

    Hierarchy (View Summary)

    Index

    Properties

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