import { BaseInput, PlayableInput } from '.'; /** * Generic audio input type * Can be any input containing audio channels, i.e. * - Microphone * - Camera * - vMix Call * - Audio file * - Video file * - NDI source * - SRT input */ export type GenericAudioInput = BaseInput & { muted: boolean; volume: number; balance: number; solo: boolean; audiobusses: string[]; audioMeter: { left: number; right: number; }; gainDb?: number; }; /** * Audio File input type */ export type AudioFileInput = GenericAudioInput & PlayableInput; //# sourceMappingURL=audio.d.ts.map