@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
19 lines • 544 B
JavaScript
;
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