import { IAudioNodeOptions } from './audio-node-options';

export interface IGainOptions extends IAudioNodeOptions {
    gain: number;
}
