UNPKG

@arcgis/workflow-manager

Version:

ArcGIS Workflow Manager JavaScript API

22 lines (21 loc) 644 B
import { CommentEnabledStep } from '../shared'; import { PortalType } from '../extendedPropertyDefinition'; import { StepInfoRequiredMessage } from './message'; export interface ProMappingStepInfoRequiredMessage extends StepInfoRequiredMessage, CommentEnabledStep { projectInfo?: ProjectInfo; } export interface ProjectInfo { type: ProjectType; path?: string; portalType?: PortalType; portalUrl?: string; itemId?: string; itemAlias?: string; itemDownloadFilename?: string; } export declare enum ProjectType { Current = "Current", Template = "Template", Portal = "Portal", Filepath = "Filepath" }