UNPKG

@arcgis/core

Version:

ArcGIS Maps SDK for JavaScript: A complete 2D and 3D mapping and data visualization API

20 lines (18 loc) 684 B
import type { ClonableMixin } from "../../core/Clonable.js"; import type { JSONSupport } from "../../core/JSONSupport.js"; export interface SmoothingPropertiesProperties extends Partial<Pick<SmoothingProperties, "enabled">> {} /** * Defines the Smoothing properties of Indoor Positioning Configuration. * * @since 4.33 */ export default class SmoothingProperties extends SmoothingPropertiesSuperclass { constructor(properties?: SmoothingPropertiesProperties); /** * Indicates whether smoothing is enabled for the IPS data. * * @default false */ accessor enabled: boolean; } declare const SmoothingPropertiesSuperclass: typeof JSONSupport & typeof ClonableMixin