@golemio/parkings
Version:
Golemio Parkings Module
16 lines (15 loc) • 442 B
TypeScript
import { TGeoCoordinates } from "@golemio/core/dist/output-gateway/Geo";
export interface IEntrance {
entrance_id: string;
source: string;
parking_id: string;
location: TGeoCoordinates;
entry: boolean | null;
exit: boolean | null;
entrance_type: string[] | null;
level: number | null;
max_height: number | null;
max_width: number | null;
max_length: number | null;
max_weight: number | null;
}