@golemio/parkings
Version:
Golemio Parkings Module
10 lines (9 loc) • 615 B
TypeScript
import { IIsphkMeasurementsItem } from "../../../schema-definitions/datasources/isphk/interfaces/IIsphkMeasurements";
import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation";
import { IIsphkMeasurementSchema } from "./IIsphkMeasurementSchema";
export declare class IsphkMeasurementTransformation extends AbstractTransformation<IIsphkMeasurementsItem, IIsphkMeasurementSchema> {
private transformationDate;
name: string;
constructor(transformationDate: Date);
protected transformInternal: (data: IIsphkMeasurementsItem) => IIsphkMeasurementSchema;
}