@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines • 540 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const utils_1 = require("../utils");
/**
* @action Post to Tumblr
* @section Content Types > Sharing > Tumblr
* @icon Tumblr
*
* Posts the content passed into the action to Tumblr.
*
* ```js
* postToTumblr();
* ```
*/
const postToTumblr = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.tumblr.post',
WFWorkflowActionParameters: {},
});
exports.default = utils_1.withActionOutput(postToTumblr);
//# sourceMappingURL=postToTumblr.js.map