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

20 lines (19 loc) 1.43 kB
"use strict"; export { default as AudioBuffer } from "./web-core/AudioBuffer.js"; export { default as AudioBufferSourceNode } from "./web-core/AudioBufferSourceNode.js"; export { default as AudioContext } from "./web-core/AudioContext.js"; export { default as OfflineAudioContext } from "./web-core/OfflineAudioContext.js"; export { default as AudioDestinationNode } from "./web-core/AudioDestinationNode.js"; export { default as AudioNode } from "./web-core/AudioNode.js"; export { default as AnalyserNode } from "./web-core/AnalyserNode.js"; export { default as AudioParam } from "./web-core/AudioParam.js"; export { default as AudioScheduledSourceNode } from "./web-core/AudioScheduledSourceNode.js"; export { default as BaseAudioContext } from "./web-core/BaseAudioContext.js"; export { default as BiquadFilterNode } from "./web-core/BiquadFilterNode.js"; export { default as GainNode } from "./web-core/GainNode.js"; export { default as OscillatorNode } from "./web-core/OscillatorNode.js"; export { default as StereoPannerNode } from "./web-core/StereoPannerNode.js"; export * from "./web-core/custom/index.js"; export { OscillatorType, BiquadFilterType, ChannelCountMode, ChannelInterpretation, ContextState, WindowType, PeriodicWaveConstraints } from "./types.js"; export { IndexSizeError, InvalidAccessError, InvalidStateError, RangeError, NotSupportedError } from "./errors/index.js"; //# sourceMappingURL=api.web.js.map