raptor
    Preparing search index...

    Interface IStop<SI, RI>

    A Stop, i.e. a specific point that is connected to routes and other stops by foot transfers

    interface IStop<SI extends Id, RI extends Id> {
        connectedRoutes: ArrayRead<RI>;
        id: SI;
        transfers(maxLength?: number): Generator<FootPath<SI>, void, undefined>;
    }

    Type Parameters

    • SI extends Id
    • RI extends Id

    Implemented by

    Index

    Properties

    Methods

    Properties

    connectedRoutes: ArrayRead<RI>
    id: SI

    Methods