@arcgis/core
Version:
ArcGIS Maps SDK for JavaScript: A complete 2D and 3D mapping and data visualization API
16 lines (14 loc) • 743 B
TypeScript
import type UpdateFeaturesWorkflowData from "./UpdateFeaturesWorkflowData.js";
import type Workflow from "./Workflow.js";
import type { UpdateFeaturesWorkflowStep } from "./types.js";
import type { WorkflowProperties } from "./Workflow.js";
export interface UpdateFeaturesWorkflowProperties extends WorkflowProperties {}
/**
* The `UpdateFeaturesWorkflow` class contains the logic used when updating and/or deleting features using
* the [Editor](https://developers.arcgis.com/javascript/latest/references/core/widgets/Editor/) widget.
*
* @since 4.33
*/
export default class UpdateFeaturesWorkflow extends Workflow<UpdateFeaturesWorkflowData, UpdateFeaturesWorkflowStep> {
constructor(properties?: UpdateFeaturesWorkflowProperties);
}