@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
19 lines • 488 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @action Show Definition
* @section Content Types > Text >
* @icon Dictionary
*
* Shows the definition of the word passed into the action.
*
* ```js
* showDefinition();
* ```
*/
const showDefinition = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.showdefinition',
WFWorkflowActionParameters: {},
});
exports.default = showDefinition;
//# sourceMappingURL=showDefinition.js.map