Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/audio/AudioContext.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class AudioContext {
/**
* Returns the global native audio context.
*
* @return {AudioContext} The native audio context.
* @return {Window.AudioContext} The native audio context.
*/
static getContext() {

Expand All @@ -27,7 +27,7 @@ class AudioContext {
/**
* Allows to set the global native audio context from outside.
*
* @param {AudioContext} value - The native context to set.
* @param {Window.AudioContext} value - The native context to set.
*/
static setContext( value ) {

Expand Down