UNPKG

@joshfarrant/shortcuts-js

Version:
15 lines (14 loc) 373 B
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;