UNPKG

@joshfarrant/shortcuts-js

Version:
23 lines 508 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * @action Set Volume * @section Content Types > Music > Playback * @icon Sound * * Sets the system volume. * * ```js * setVolume({ * volume: 50, * }); * ``` */ const setVolume = ({ volume = 50, }) => ({ WFWorkflowActionIdentifier: 'is.workflow.actions.setvolume', WFWorkflowActionParameters: { WFVolume: volume / 100, }, }); exports.default = setVolume; //# sourceMappingURL=setVolume.js.map