UNPKG

@golemio/parkings

Version:
17 lines (16 loc) 417 B
import { Geometry } from "@golemio/core/dist/shared/geojson"; export interface IParkingMachine { id: string; source: string; sourceId: string; code: string | null; type: string; location: Geometry; validFrom: Date | null; active: boolean; } export interface IParkingMachineWithTariff extends IParkingMachine { parking_tariffs_relation: { tariff_id: string | null; }; }