UNPKG

@joshfarrant/shortcuts-js

Version:
19 lines 547 B
"use strict"; 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