add docblock to AudioEngine.currentTime

This commit is contained in:
Michael "Z" Goddard 2018-06-21 15:42:57 -04:00
parent 741817ad62
commit ed0ef8e4dc
No known key found for this signature in database
GPG key ID: 762CD40DD5349872

View file

@ -65,6 +65,10 @@ class AudioEngine {
this.loudness = null;
}
/**
* Current time in the AudioEngine.
* @type {number}
*/
get currentTime () {
return this.audioContext.currentTime;
}