Saxonberg Server API
    Preparing search index...

    Public shape provided by FastTravelMixin.

    interface FastTravel {
        advanceSelection(): void;
        armNetwork(): Promise<void>;
        armTimetable(): void;
        disarmTimetable(): void;
        getArrivalRoom(): Promise<Stuff & Container>;
        getDirectionality(): Directionality;
        getRoutes(): ReadonlyMap<string, TravelRoute>;
        getSelectedDestination(): string | null;
        getStatus(): string;
        hasRoute(ref: string): boolean;
        isArrival(): boolean;
        isDeparture(): boolean;
        renderDepartures(viewer: Stuff & Sensor): Promise<string>;
        resolveRouteByKeyword(
            keyword: string,
        ): Promise<{ ambiguous?: boolean; route?: TravelRoute }>;
        selectDeparture(ref: string): void;
        setDirectionality(value: Directionality): void;
        setSelectedDestination(ref: string): void;
        setStatus(value: string): void;
    }
    Index

    Methods