@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
16 lines (15 loc) • 670 B
TypeScript
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;