@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
19 lines • 533 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @action Remove Reminders
* @section Content Types > Calendar > Reminders
* @icon Reminders
*
* Removes all reminders passed into the action from the lists they are contained in.
*
* ```js
* removeReminders();
* ```
*/
const removeReminders = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.removereminders',
WFWorkflowActionParameters: {},
});
exports.default = removeReminders;
//# sourceMappingURL=removeReminders.js.map