UNPKG

@joshfarrant/shortcuts-js

Version:
16 lines (15 loc) 670 B
import WFWorkflowAction from './WFWorkflowAction'; import WFWorkflowIcon from './WFWorkflowIcon'; import WFWorkflowImportQuestion from './WFWorkflowImportQuestion'; import WFWorkflowInputContentItemClass from './WFWorkflowInputContentItemClass'; import WFWorkflowType from './WFWorkflowType'; interface WFWorkflow { WFWorkflowClientVersion: string; WFWorkflowClientRelease: string; WFWorkflowIcon: WFWorkflowIcon; WFWorkflowImportQuestions: WFWorkflowImportQuestion[]; WFWorkflowTypes: WFWorkflowType[]; WFWorkflowInputContentItemClasses: WFWorkflowInputContentItemClass[]; WFWorkflowActions: WFWorkflowAction[]; } export default WFWorkflow;