UNPKG

@joshfarrant/shortcuts-js

Version:
19 lines 544 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * @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(); * ``` */ const nothing = () => ({ WFWorkflowActionIdentifier: 'is.workflow.actions.nothing', WFWorkflowActionParameters: {}, }); exports.default = nothing; //# sourceMappingURL=nothing.js.map