@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
19 lines • 441 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @action Open URLs
* @section Content Types > Web > Safari
* @icon Safari
*
* Opens URLs passed into the action in Safari.
*
* ```js
* openURLs();
* ```
*/
const openURLs = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.openurl',
WFWorkflowActionParameters: {},
});
exports.default = openURLs;
//# sourceMappingURL=openURLs.js.map