@golemio/pid
Version:
Golemio PID Module
10 lines (9 loc) • 457 B
TypeScript
import { IModel, PostgresModel } from "@golemio/core/dist/integration-engine/models";
import { ITripWithShapesAndStopTimes } from "./interfaces/TripModelInterfaces";
export declare class RopidGTFSTripsModel extends PostgresModel implements IModel {
private modelGTFSShapes;
private modelGTFSStopTimes;
private modelGTFSStops;
constructor();
findByIdForDelayComputation: (tripId: string) => Promise<ITripWithShapesAndStopTimes | null>;
}