@soundtouchjs/audio-worklet
Version:
AudioWorklet implementation of the SoundTouchJS library
12 lines • 602 B
TypeScript
/**
* Main entry point for the SoundTouch audio-worklet package.
*
* @remarks
* Re-exports the SoundTouchNode class, its options types, and the processor name constant for use in host applications.
*/
export { SoundTouchNode } from './SoundTouchNode.js';
export type { ProcessorMetrics, SoundTouchNodeConstructorOptions, SoundTouchNodeOptions, StretchParameters, } from './SoundTouchNode.js';
export { PROCESSOR_NAME } from './constants.js';
export { processOffline } from './processOffline.js';
export type { ProcessOfflineOptions } from './processOffline.js';
//# sourceMappingURL=index.d.ts.map