@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines • 571 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const utils_1 = require("../utils");
/**
* @action Post to WordPress
* @section Content Types > Sharing > WordPress
* @icon WordPress
*
* Posts the input to a WordPress blog as a new post or page.
*
* ```js
* postToWordPress();
* ```
*/
const postToWordPress = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.wordpress.post',
WFWorkflowActionParameters: {},
});
exports.default = utils_1.withActionOutput(postToWordPress);
//# sourceMappingURL=postToWordPress.js.map