UNPKG

@arcgis/workflow-manager

Version:

ArcGIS Workflow Manager JavaScript API

21 lines (20 loc) 488 B
export declare enum ArcadeContextType { BaseContext = "BaseContext", JobContext = "JobContext" } export declare enum ArcadeParseMode { Standard = "Standard", Url = "URL", Query = "Query" } export interface ArcadeContext { } export interface ArcadeJobContext extends ArcadeContext { jobId: string; } export interface ArcadeExpressionDetails { expression: string; parseMode: ArcadeParseMode; context: ArcadeContext; contextType: ArcadeContextType; }