@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
19 lines • 507 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @action Play Sound
* @section Actions > Scripting > Notification
* @icon Sound
*
* Plays the audio file passed as input, or a default notification sound if no audio file was passed.
*
* ```js
* playSound();
* ```
*/
const playSound = () => ({
WFWorkflowActionIdentifier: 'is.workflow.actions.playsound',
WFWorkflowActionParameters: {},
});
exports.default = playSound;
//# sourceMappingURL=playSound.js.map