Interface AudioParamMap
interface AudioParamMap {
forEach(callbackfn: ((value: AudioParam, key: string, parent: AudioParamMap) => void), thisArg?: any): void;
}
forEach(callbackfn: ((value: AudioParam, key: string, parent: AudioParamMap) => void), thisArg?: any): void;
}
Index
Methods
Methods
forEach
- for
Each (callbackfn, thisArg?): void Parameters
- callbackfn: ((value: AudioParam, key: string, parent: AudioParamMap) => void)
- (value, key, parent): void
Parameters
- value: AudioParam
- key: string
- parent: AudioParamMap
Returns void
Optional
thisArg: any
Returns void
- callbackfn: ((value: AudioParam, key: string, parent: AudioParamMap) => void)