gatelogue-types
    Preparing search index...

    Interface Located<S>

    interface Located<S extends boolean = true> {
        coordinates: null | { s: string[]; v: [number, number] };
        i: number;
        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

    coordinates: null | { s: string[]; v: [number, number] }
    i: number
    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>