standardized-audio-context
Version:
A cross-browser wrapper for the Web Audio API which aims to closely follow the standard.
7 lines • 339 B
TypeScript
import { TContext } from '../types';
import { IAudioParam } from './audio-param';
import { IAudioScheduledSourceNode } from './audio-scheduled-source-node';
export interface IConstantSourceNode<T extends TContext> extends IAudioScheduledSourceNode<T> {
readonly offset: IAudioParam;
}
//# sourceMappingURL=constant-source-node.d.ts.map