@golemio/parkings
Version:
Golemio Parkings Module
9 lines (8 loc) • 680 B
TypeScript
import { IParkingMachineWithTariff } from "../../../schema-definitions/models/interfaces/IParkingMachine";
import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation";
import { IGeoJSONFeature } from "@golemio/core/dist/output-gateway/Geo";
export declare class ParkingMachinesDtoTransformation extends AbstractTransformation<IParkingMachineWithTariff, IGeoJSONFeature> {
name: string;
transformToFeatureCollection: (elements: IParkingMachineWithTariff[]) => import("@golemio/core/dist/output-gateway/Geo").IGeoJSONFeatureCollection;
protected transformInternal: (element: IParkingMachineWithTariff) => IGeoJSONFeature;
}