import { ChannelType } from '../enums/channelType.js'; /** * Type representing a phone number channel. */ type PhoneNumberChannel = { /** * The type of channel (phone). */ type: ChannelType.PHONE; /** * The phone number. */ number: string; }; export type { PhoneNumberChannel };