@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
19 lines • 497 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @action Add to Reading List
* @section Content Types > Web > Safari
* @icon Safari
*
* Adds URLs passed into the action to your reading list.
*
* ```js
* addToReadingList();
* ```
*/
const addToReadingList = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.readinglist',
WFWorkflowActionParameters: {},
});
exports.default = addToReadingList;
//# sourceMappingURL=addToReadingList.js.map