UNPKG

@joshfarrant/shortcuts-js

Version:
20 lines (19 loc) 463 B
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction'; /** * @action Set Cellular Data * @section Actions > Scripting > Device * @icon CellularData * * Sets the device’s Cellular Data to on or off. * * ```js * setCellularData({ * value: true, * }); * ``` */ declare const setCellularData: ({ value, }: { /** Enable or disable cellular data */ value?: boolean | undefined; }) => WFWorkflowAction; export default setCellularData;