@arcgis/workflow-manager
Version:
ArcGIS Workflow Manager JavaScript API
15 lines (14 loc) • 437 B
TypeScript
import { ExtendedPropertyItemType, PortalType } from './extendedPropertyDefinition';
export interface PortalItemInfoProperties {
itemId: string;
itemType?: ExtendedPropertyItemType;
portalType: PortalType;
portalUrl: string;
tableAlias: string;
tableName: string;
}
export interface FeatureLayerTableDefinition extends PortalItemInfoProperties {
layerId: string;
linkId: string;
serviceUrl: string;
}