@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines • 465 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const utils_1 = require("../utils");
/**
* @action Tweet
* @section Content Types > Sharing > Twitter
* @icon Twitter
*
* Tweets the input.
*
* ```js
* tweet();
* ```
*/
const tweet = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.tweet',
WFWorkflowActionParameters: {},
});
exports.default = utils_1.withActionOutput(tweet);
//# sourceMappingURL=tweet.js.map