UNPKG

@joshfarrant/shortcuts-js

Version:
13 lines (12 loc) 687 B
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction'; declare const _default: (options: { /** An array of actions to perform if condition is true */ ifTrue?: WFWorkflowAction[] | undefined; /** An array of actions to perform if condition is false */ ifFalse?: WFWorkflowAction[] | undefined; /** The test to perform on the input */ input?: "Equals" | "Is Greater Than" | "Is Less Than" | "=" | "<" | ">" | "Contains" | undefined; /** The value to test the input against */ value?: string | number | undefined; }, output?: import("../interfaces/Variable").default | undefined) => WFWorkflowAction | WFWorkflowAction[]; export default _default;