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