@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 354 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Add to Reading List
* @section Content Types > Web > Safari
* @icon Safari
*
* Adds URLs passed into the action to your reading list.
*
* ```js
* addToReadingList();
* ```
*/
declare const addToReadingList: () => WFWorkflowAction;
export default addToReadingList;