Tone.js/Tone/core/util/global.d.ts

15 lines
300 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> {
2024-05-03 15:09:28 +00:00
forEach(
callbackfn: (
value: AudioParam,
key: string,
parent: AudioParamMap
) => void,
thisArg?: any
): void;
}