@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 387 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @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();
* ```
*/
declare const removeReminders: () => WFWorkflowAction;
export default removeReminders;