@golemio/parkings
Version:
Golemio Parkings Module
11 lines (10 loc) • 622 B
TypeScript
import { BaseTransformation, ITransformation } from "@golemio/core/dist/integration-engine/transformations";
import { IZtpParkingJsonFeature } from "../../schema-definitions/datasources/interfaces/IZtpParkingJsonFeature";
import { IParking } from "../ParkingInterface";
export declare class ZtpParkingZonesTransformation extends BaseTransformation implements ITransformation {
name: string;
transformationDate: string;
constructor(transformationDate: Date);
transform: (data: IZtpParkingJsonFeature[]) => Promise<IParking[]>;
transformElement: (element: IZtpParkingJsonFeature) => Promise<IParking>;
}