standardized-audio-context
Version:
A cross-browser wrapper for the Web Audio API which aims to closely follow the standard.
10 lines • 466 B
TypeScript
import { TContext, TOscillatorType } from '../types';
import { IAudioParam } from './audio-param';
import { IAudioScheduledSourceNode } from './audio-scheduled-source-node';
export interface IOscillatorNode<T extends TContext> extends IAudioScheduledSourceNode<T> {
readonly detune: IAudioParam;
readonly frequency: IAudioParam;
type: TOscillatorType;
setPeriodicWave(periodicWave: PeriodicWave): void;
}
//# sourceMappingURL=oscillator-node.d.ts.map