@golemio/pid
Version:
Golemio PID Module
8 lines (7 loc) • 531 B
TypeScript
import { IComputationTripShape } from "../../../../../schema-definitions/ropid-gtfs/redis/interfaces/IDelayComputationDto";
import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation";
import { IGeoJSONFeature } from "@golemio/core/dist/output-gateway";
export declare class PublicVPTripShapesTransformation extends AbstractTransformation<IComputationTripShape, IGeoJSONFeature> {
name: string;
protected transformInternal: (shape: IComputationTripShape) => IGeoJSONFeature;
}