soundcraft-ui-connection
Version:
Library for controlling the Soundcraft Ui series audio mixers
11 lines (10 loc) • 407 B
TypeScript
import { MixerConnection } from '../mixer-connection';
import { MixerStore } from '../state/mixer-store';
import { ChannelType } from '../types';
import { SendChannel } from './send-channel';
/**
* Represents a channel on an FX bus
*/
export declare class FxChannel extends SendChannel {
constructor(conn: MixerConnection, store: MixerStore, channelType: ChannelType, channel: number, bus: number);
}