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

47 lines (42 loc) 1.64 kB
export { default as AudioBuffer } from './web-core/AudioBuffer'; export { default as AudioBufferSourceNode } from './web-core/AudioBufferSourceNode'; export { default as AudioContext } from './web-core/AudioContext'; export { default as OfflineAudioContext } from './web-core/OfflineAudioContext'; export { default as AudioDestinationNode } from './web-core/AudioDestinationNode'; export { default as AudioNode } from './web-core/AudioNode'; export { default as AnalyserNode } from './web-core/AnalyserNode'; export { default as AudioParam } from './web-core/AudioParam'; export { default as AudioScheduledSourceNode } from './web-core/AudioScheduledSourceNode'; export { default as BaseAudioContext } from './web-core/BaseAudioContext'; export { default as BiquadFilterNode } from './web-core/BiquadFilterNode'; export { default as GainNode } from './web-core/GainNode'; export { default as OscillatorNode } from './web-core/OscillatorNode'; export { default as StereoPannerNode } from './web-core/StereoPannerNode'; export { default as ConstantSourceNode } from './web-core/ConstantSourceNode'; export { default as ConvolverNode } from './web-core/ConvolverNode'; export * from './web-core/custom'; export { OscillatorType, BiquadFilterType, ChannelCountMode, ChannelInterpretation, ContextState, WindowType, PeriodicWaveConstraints, } from './types'; export { IOSCategory, IOSMode, IOSOption, SessionOptions, MediaState, LockScreenInfo, PermissionStatus, } from './system/types'; export { IndexSizeError, InvalidAccessError, InvalidStateError, RangeError, NotSupportedError, } from './errors';