import { TNativeAudioNode, TNativeConstantSourceNode } from '../types';

// @todo This does kind of implement the INativeAudioNodeFaker interface.
export interface INativeConstantSourceNodeFaker extends TNativeConstantSourceNode {
    bufferSize: undefined;

    inputs: TNativeAudioNode[];
}
