@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines • 564 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const utils_1 = require("../utils");
/**
* @action Get URLs from Input
* @section Content Types > Web > URLs
* @icon URL
*
* Returns any links found in the output from the previous action.
*
* ```js
* getURLsFromInput();
* ```
*/
const getURLsFromInput = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.detect.link',
WFWorkflowActionParameters: {},
});
exports.default = utils_1.withActionOutput(getURLsFromInput);
//# sourceMappingURL=getURLsFromInput.js.map