@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines (19 loc) • 439 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Set Bluetooth
* @section Actions > Scripting > Device
* @icon Bluetooth
*
* Sets the device’s Bluetooth to on or off.
*
* ```js
* setBluetooth({
* value: true,
* });
* ```
*/
declare const setBluetooth: ({ value, }: {
/** Enable or disable Bluetooth */
value?: boolean | undefined;
}) => WFWorkflowAction;
export default setBluetooth;