Interface AudioPlayerOptions

interface AudioPlayerOptions {
    action: AudioPlayerAction;
    audioSource: HTMLAudioElement;
    loop: boolean;
    volume: number;
}

Properties

audioSource: HTMLAudioElement
loop: boolean
volume: number