@joshfarrant/shortcuts-js
Version:
An iOS 12 Shortcuts creator
15 lines (14 loc) • 373 B
TypeScript
import WFWorkflowAction from '../interfaces/WF/WFWorkflowAction';
/**
* @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();
* ```
*/
declare const playSound: () => WFWorkflowAction;
export default playSound;