UNPKG

react-native-audio-api

Version:

react-native-audio-api provides system for controlling audio in React Native environment compatible with Web Audio API specification

12 lines (11 loc) 389 B
"use strict"; import AudioNode from "./AudioNode.web.js"; import AudioParam from "./AudioParam.web.js"; export default class GainNode extends AudioNode { constructor(context, gainOptions) { const gain = new globalThis.GainNode(context.context, gainOptions); super(context, gain); this.gain = new AudioParam(gain.gain, context); } } //# sourceMappingURL=GainNode.web.js.map