@golemio/parkings
Version:
Golemio Parkings Module
13 lines (12 loc) • 340 B
TypeScript
import { TGeoCoordinates } from "@golemio/core/dist/output-gateway/Geo";
export interface IStaticParkingLotsGeo {
type: "FeatureCollection";
features: IStaticParkingLotsGeoFeature[];
}
export interface IStaticParkingLotsGeoFeature {
type: "Feature";
geometry: TGeoCoordinates;
properties: {
id: string;
};
}