import { MessageTypes } from '../enums/MessageTypes.js'; import { MessageParams } from './MessageParams.js'; import { MessageVideoType } from './MessageVideoType.js'; import '../enums/Channels.js'; /** * Represents the parameters for a message containing a video. */ type MessageParamsVideo = { messageType: MessageTypes.VIDEO | string; /** * The video information to be included in the message. */ video: MessageVideoType; } & MessageParams; export type { MessageParamsVideo };