@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines • 588 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const utils_1 = require("../utils");
/**
* @action Get Maps URL
* @section Content Types > Location > Maps
* @icon Maps
*
* Creates a URL to search for the location, place, or text that was passed into the action in a separate maps app.
*
* ```js
* getMapsURL();
* ```
*/
const getMapsURL = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.getmapslink',
WFWorkflowActionParameters: {},
});
exports.default = utils_1.withActionOutput(getMapsURL);
//# sourceMappingURL=getMapsURL.js.map