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