@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
20 lines (19 loc) • 425 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @action Set Volume
* @section Content Types > Music > Playback
* @icon Sound
*
* Sets the system volume.
*
* ```js
* setVolume({
* volume: 50,
* });
* ```
*/
declare const setVolume: ({ volume, }: {
/** Number between 0 & 100 to set the volume to */
volume?: number | undefined;
}) => WFWorkflowAction;
export default setVolume;