@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
19 lines • 411 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @action Share
* @section Content Types > Sharing > System
* @icon Sharing
*
* Prompts to share the input.
*
* ```js
* share();
* ```
*/
const share = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.share',
WFWorkflowActionParameters: {},
});
exports.default = share;
//# sourceMappingURL=share.js.map