UNPKG

@joshfarrant/shortcuts-js

Version:
15 lines (14 loc) 415 B
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction'; /** * @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(); * ``` */ declare const exitShortcut: () => WFWorkflowAction; export default exitShortcut;