import { ChannelType } from '../enums/channelType.js'; /** * Type representing a SIP channel. */ type SipChannel = { /** * The type of channel (SIP). */ type: ChannelType.SIP; /** * The SIP URI. */ uri: string; /** * The SIP username. */ username: string; /** * The SIP password. */ password: string; }; export type { SipChannel };