/** * Audio bus type */ export type AudioBus = { abbr: string; name: string; volume: number; muted: boolean; audioMeter: { left: number; right: number; }; customName?: string; }; /** * Master AudioBus type * Extends generic AudioBus type */ export type MasterAudioBus = AudioBus & { headphonesVolume: number; }; //# sourceMappingURL=audio-bus.d.ts.map