@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 482 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Wait to Return
* @section Actions > Scripting > Control Flow
* @icon Scripting
*
* Pauses execution until you leave the Shortcuts app and return to it. This action might be useful after an action that switches apps, to pause execution until you return to the Shortcuts app.
*
* ```js
* waitToReturn();
* ```
*/
declare const waitToReturn: () => WFWorkflowAction;
export default waitToReturn;