UNPKG

raptor-journey-planner

Version:

Implementation of the Round bAsed Public Transit Optimized Router (Raptor) journey planning algorithm.

11 lines (10 loc) 259 B
/** * Parses time strings and returns them as seconds from midnight. Caches results */ export declare class TimeParser { private readonly timeCache; /** * Convert a time string to seconds from midnight */ getTime(time: string): any; }