@vertigis/viewer-spec
Version:
VertiGIS Viewer Specification
12 lines (11 loc) • 397 B
TypeScript
import type { ItemRef } from "./ItemRef.js";
import type { ServiceModelProperties } from "./ServiceModelProperties.js";
/**
* Configuration for the workflow events service. For internal use only.
*/
export interface WorkflowEventsProperties extends ServiceModelProperties {
/**
* An array of workflows to run when the app is launched. (Workflow[]).
*/
workflows?: ItemRef[];
}