@golemio/parkings
Version:
Golemio Parkings Module
8 lines (7 loc) • 557 B
TypeScript
import { IParkingLatestMeasurements } from "../../data-access/interfaces/IParkingMeasurementsDto";
import { IV3ParkingMeasurementsDto } from "../interfaces/v3/IV3ParkingMeasurementsDto";
import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation";
export declare class ParkingMeasurementDtoTransformation extends AbstractTransformation<IParkingLatestMeasurements, IV3ParkingMeasurementsDto> {
name: string;
protected transformInternal: (data: IParkingLatestMeasurements) => IV3ParkingMeasurementsDto;
}