import type { JSONSupport } from "../../core/JSONSupport.js"; export interface BaseImageMeasureResultProperties extends Partial> {} /** * Base class for image service measure result. * * @since 4.26 */ export default class BaseImageMeasureResult extends JSONSupport { constructor(properties?: BaseImageMeasureResultProperties); /** Name of the raster dataset used in the area and height measurement. */ accessor name: string; /** Sensor name of the raster dataset used in the area and height measurement. */ accessor sensorName: string; }