@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
19 lines • 520 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @action Get Current Location
* @section Content Types > Location > Get Current Location
* @icon Location
*
* Gets the current location of the device.
*
* ```js
* getCurrentLocation();
* ```
*/
const getCurrentLocation = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.getcurrentlocation',
WFWorkflowActionParameters: {},
});
exports.default = getCurrentLocation;
//# sourceMappingURL=getCurrentLocation.js.map