mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-31 22:18:44 +00:00
8 lines
280 B
TypeScript
8 lines
280 B
TypeScript
|
/**
|
||
|
* Replace the default lib.dom.d.ts interface to reflect the fact
|
||
|
* that the AudioParamMap extends Map
|
||
|
*/
|
||
|
interface AudioParamMap extends Map<string, AudioParam> {
|
||
|
forEach(callbackfn: (value: AudioParam, key: string, parent: AudioParamMap) => void, thisArg?: any): void;
|
||
|
}
|