@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 414 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Nothing
* @section Actions > Scripting > Content
* @icon Scripting
*
* This action does nothing and produces no output. It is useful to separate blocks of actions, or to ensure that no input is passed to the next action.
*
* ```js
* nothing();
* ```
*/
declare const nothing: () => WFWorkflowAction;
export default nothing;