@golemio/parkings
Version:
Golemio Parkings Module
17 lines (16 loc) • 417 B
TypeScript
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;
};
}