UNPKG

soundcraft-ui-connection

Version:

Library for controlling the Soundcraft Ui series audio mixers

8 lines (7 loc) 604 B
import { BusType, ChannelType } from '../types'; /** construct the channel id for a master channel, e.g. `i.0` */ export declare function constructMasterChannelId(channelType: ChannelType, channel: number): string; /** construct the channel id for a send (AUX/FX) channel, e.g. `i.0.aux.2` */ export declare function constructSendChannelId(channelType: ChannelType, channel: number, busType: BusType, bus: number): string; /** construct the channel id for a matrix source, e.g. `a.0.mtx.6` */ export declare function constructMtxChannelId(channelType: ChannelType, channel: number, bus: number): string;