mirror of
https://github.com/scratchfoundation/scratch-audio.git
synced 2024-12-22 22:12:48 -05:00
8 lines
143 B
JavaScript
8 lines
143 B
JavaScript
|
class AudioParamMock {
|
||
|
setTargetAtTime (value /* , start, stop */) {
|
||
|
this.value = value;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = AudioParamMock;
|