@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
23 lines • 494 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @action URL
* @section Content Types > Web > URLs
* @icon URL
*
* Passes the specified URL to the next action.
*
* ```js
* URL({
* url: 'https://shortcuts.fun',
* });
* ```
*/
const URL = ({ url = '', }) => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.url',
WFWorkflowActionParameters: {
WFURLActionURL: url,
},
});
exports.default = URL;
//# sourceMappingURL=URL.js.map