mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-29 04:53:10 +00:00
8bc4deec2b
They each get their own .worklet.ts file which enables some typescript checking
7 lines
280 B
TypeScript
7 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;
|
|
}
|