@arcgis/core
Version:
ArcGIS Maps SDK for JavaScript: A complete 2D and 3D mapping and data visualization API
22 lines (20 loc) • 872 B
TypeScript
import type Geotrigger from "./geotriggersInfo/Geotrigger.js";
import type { ClonableMixin } from "../core/Clonable.js";
import type { JSONSupport } from "../core/JSONSupport.js";
import type { GeotriggerProperties } from "./geotriggersInfo/Geotrigger.js";
export interface GeotriggersInfoProperties {
/** A list of Geotriggers. */
geotriggers?: (GeotriggerProperties & { type: "fence" })[] | null;
}
/**
* Information relating to a list of Geotriggers.
*
* @since 4.24
*/
export default class GeotriggersInfo extends GeotriggersInfoSuperclass {
constructor(properties?: GeotriggersInfoProperties);
/** A list of Geotriggers. */
get geotriggers(): Geotrigger[] | null | undefined;
set geotriggers(value: (GeotriggerProperties & { type: "fence" })[] | null | undefined);
}
declare const GeotriggersInfoSuperclass: typeof JSONSupport & typeof ClonableMixin