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