react-native-audio-api
Version:
react-native-audio-api provides system for controlling audio in React Native environment compatible with Web Audio API specification
35 lines (31 loc) • 1.35 kB
text/typescript
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 * from './web-core/custom';
export {
OscillatorType,
BiquadFilterType,
ChannelCountMode,
ChannelInterpretation,
ContextState,
WindowType,
PeriodicWaveConstraints,
} from './types';
export {
IndexSizeError,
InvalidAccessError,
InvalidStateError,
RangeError,
NotSupportedError,
} from './errors';