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 
- forEach(
 callbackfn: (
 value: AudioParam,
 key: string,
 parent: AudioParamMap,
 ) => void,
 thisArg?: any,
 ): void
- Parameters- callbackfn: (value: AudioParam, key: string, parent: AudioParamMap) => void
- OptionalthisArg: any
 - Returns void