@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
23 lines • 563 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @action Set Low Power Mode
* @section Actions > Scripting > Device
* @icon Battery
*
* Sets the device’s Low Power Mode to on or off.
*
* ```js
* setLowPowerMode({
* value: false,
* });
* ```
*/
const setLowPowerMode = ({ value = true, }) => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.lowpowermode.set',
WFWorkflowActionParameters: {
OnValue: value,
},
});
exports.default = setLowPowerMode;
//# sourceMappingURL=setLowPowerMode.js.map