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;
}
