import type { CoordinateModelProperties as CommonCoordinateModelProperties } from "../common/CoordinateModelProperties"; /** * Configuration for the coordinate service. */ export interface CoordinateModelProperties extends CommonCoordinateModelProperties { /** * Whether the coordinates can be overridden by the end user. */ canOverride?: boolean; }