import { ChannelType } from '../enums/channelType.js'; /** * Type representing a WebSocket channel. */ type WebSocketChannel = { /** * The type of channel (WebSocket). */ type: ChannelType; /** * The WebSocket URI. */ uri: string; /** * The content type for WebSocket. */ contentType: string; }; export type { WebSocketChannel };