@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
19 lines • 547 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @action Exit Shortcut
* @section Actions > Scripting > Control Flow
* @icon Scripting
*
* Stops execution of the current shortcut and dismisses the shortcut on screen. No more actions will be run after this action.
*
* ```js
* exitShortcut();
* ```
*/
const exitShortcut = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.exit',
WFWorkflowActionParameters: {},
});
exports.default = exitShortcut;
//# sourceMappingURL=exitShortcut.js.map