UNPKG

@golemio/pid

Version:
12 lines (11 loc) 576 B
import { IModel, PostgresModel } from "@golemio/core/dist/integration-engine/models"; import Sequelize from "@golemio/core/dist/shared/sequelize"; import { ITripWithShapesAndStopTimes } from "./interfaces/TripModelInterfaces"; export declare class RopidGTFSTripsModel extends PostgresModel implements IModel { private modelGTFSShapes; private modelGTFSStopTimes; private modelGTFSStops; get publicSequelizeModel(): Sequelize.ModelCtor<any>; constructor(); findByIdForDelayComputation: (tripId: string) => Promise<ITripWithShapesAndStopTimes | null>; }