UNPKG

@joshfarrant/shortcuts-js

Version:
15 lines (14 loc) 414 B
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;