@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
19 lines • 488 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @action Get Clipboard
* @section Content Types > Sharing > Clipboard
* @icon Clipboard
*
* Passes the contents of the clipboard to the next action.
*
* ```js
* getClipboard();
* ```
*/
const getClipboard = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.getclipboard',
WFWorkflowActionParameters: {},
});
exports.default = getClipboard;
//# sourceMappingURL=getClipboard.js.map