-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: simple web audio api wrappers (#224)
- Loading branch information
Showing
2 changed files
with
438 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { installModule } from './utils/install'; | ||
|
||
if (global.__AudioAPIInstaller == null) { | ||
installModule(); | ||
} | ||
|
||
export { default as AudioBuffer } from './core/AudioBuffer'; | ||
export { default as AudioBufferSourceNode } from './core/AudioBufferSourceNode'; | ||
export { default as AudioContext } from './core/AudioContext'; | ||
export { default as AudioDestinationNode } from './core/AudioDestinationNode'; | ||
export { default as AudioNode } from './core/AudioNode'; | ||
export { default as AudioParam } from './core/AudioParam'; | ||
export { default as AudioScheduledSourceNode } from './core/AudioScheduledSourceNode'; | ||
export { default as BaseAudioContext } from './core/BaseAudioContext'; | ||
export { default as BiquadFilterNode } from './core/BiquadFilterNode'; | ||
export { default as GainNode } from './core/GainNode'; | ||
export { default as OscillatorNode } from './core/OscillatorNode'; | ||
export { default as StereoPannerNode } from './core/StereoPannerNode'; | ||
export { | ||
OscillatorType, | ||
BiquadFilterType, | ||
ChannelCountMode, | ||
ChannelInterpretation, | ||
ContextState, | ||
} from './core/types'; |
Oops, something went wrong.