@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines • 576 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const utils_1 = require("../utils");
/**
* @action Show in Calendar
* @section Content Types > Calendar > Calendar
* @icon Calendar
*
* Shows the date or calendar event passed as input in the Calendar app.
*
* ```js
* showInCalendar();
* ```
*/
const showInCalendar = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.showincalendar',
WFWorkflowActionParameters: {},
});
exports.default = utils_1.withActionOutput(showInCalendar);
//# sourceMappingURL=showInCalendar.js.map