Interface AudioParamMap

    interface AudioParamMap {
        forEach(
            callbackfn: (
                value: AudioParam,
                key: string,
                parent: AudioParamMap,
            ) => void,
            thisArg?: any,
        ): void;
    }

    Methods

    Methods

    • Parameters

      Returns void