import type { Resource } from "./Resource"; import type { Step } from "./Step"; import type { Transition } from "./Transition"; /** Describes portion of a workflow program. */ export interface Component extends Resource { /** Indicates the steps of this component. */ steps?: Step[]; /** Indicates the transitions of this component. */ transitions?: Transition[]; }