import { ChannelType } from '../enums/channelType.js'; /** * Type representing a VBC (Voice Business Cloud) channel. */ type VbcChannel = { /** * The type of channel (VBC). */ type: ChannelType.VBC; /** * The VBC extension. */ extension: string; }; export type { VbcChannel };