@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 368 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Get Current Location
* @section Content Types > Location > Get Current Location
* @icon Location
*
* Gets the current location of the device.
*
* ```js
* getCurrentLocation();
* ```
*/
declare const getCurrentLocation: () => WFWorkflowAction;
export default getCurrentLocation;