UNPKG

@joshfarrant/shortcuts-js

Version:
20 lines (19 loc) 446 B
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;