@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines (19 loc) • 446 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Wait
* @section Actions > Scripting > Control Flow
* @icon Scripting
*
* Waits for the specified number of seconds before continuing with the next action.
*
* ```js
* wait({
* time: 19,
* });
* ```
*/
declare const wait: ({ time, }: {
/** The number of seconds to wait */
time?: number | undefined;
}) => WFWorkflowAction;
export default wait;