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