UNPKG

tfl-api-wrapper

Version:

A Node JS wrapper for the Transport for London API

9 lines (8 loc) 307 B
import TfLAPI from './tfl'; import TfL from './interfaces/tfl'; export default class BikePoint extends TfLAPI { constructor(config: string); getAll(): Promise<Array<TfL['Place']>>; getByID(id: string): Promise<TfL['Place']>; getByName(query: string): Promise<Array<TfL['Place']>>; }