@golemio/pid
Version:
Golemio PID Module
10 lines (9 loc) • 739 B
TypeScript
import { IPublicApiGtfsTrip } from "../../../../domain/PublicApiGtfsTripLookupInterfaces";
import { PublicGtfsTripShapesTransformation } from "../../../transformations/gtfs-trip-scopes/PublicGtfsTripShapesTransformation";
import { ITripWithDefinedRouteDto } from "../../../../../../schema-definitions/ropid-gtfs/interfaces/ITripWithOptionalAssociationsDto";
import { AbstractGtfsTripScopeHandler } from "./AbstractGtfsTripScopeHandler";
export declare class ShapesGtfsTripScopeHandler extends AbstractGtfsTripScopeHandler {
private tripShapesTransformation;
constructor(tripShapesTransformation: PublicGtfsTripShapesTransformation);
handle(output: IPublicApiGtfsTrip, gtfsTrip: ITripWithDefinedRouteDto): IPublicApiGtfsTrip;
}