2
0
Fork 0
mirror of https://github.com/Tonejs/Tone.js synced 2025-01-23 00:55:02 +00:00
Tone.js/Tone/core/util/global.d.ts

8 lines
280 B
TypeScript
Raw Normal View History

/**
* 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;
}