UNPKG

@golemio/parkings

Version:
10 lines (9 loc) 599 B
import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation"; import { IParkingLocation } from "../ParkingInterface"; import { ITskParkingSectionLevel } from "../../schema-definitions/datasources/interfaces/ITskParkingSectionLevel"; export declare class TskParkingSectionLevelTransformation extends AbstractTransformation<ITskParkingSectionLevel, IParkingLocation> { private specialAccess?; name: string; constructor(specialAccess?: string | undefined); protected transformInternal: (zone: ITskParkingSectionLevel) => IParkingLocation; }