@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 398 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Continue Shortcut in App
* @section Actions > Scripting > Control Flow
* @icon HandoffAction
*
* Switches into the Shortcuts app and continues to the next action.
*
* ```js
* continueShortcutInApp();
* ```
*/
declare const continueShortcutInApp: () => WFWorkflowAction;
export default continueShortcutInApp;