import { GeoCoordinates, GeoPosition, IdObject } from "./common.js"; import type EJSONType from "../../EJSONType.js"; type ObjectIDCtor = typeof EJSONType["ObjectID"]; type ObjectID = InstanceType; export interface ZoneItemNormalized { _id: IdObject; countryCode: string; geo: GeoCoordinates; geoPosition: GeoPosition; level: string[]; name: string; osmID?: string; wikidataID?: string; translateId: string; [key: string]: unknown; } export interface ZoneItemJson { id: string; _id: ObjectID; countryCode: string; geo: GeoCoordinates; geoPosition: GeoPosition; level: string[]; name: string; osmID?: string; wikidataID?: string; translateId: string; [key: string]: unknown; } export {};