UNPKG

@joshfarrant/shortcuts-js

Version:
20 lines (19 loc) 439 B
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;