import { ChannelType } from "../../Channels/ChannelType"; export interface postComment { channelType: ChannelType; postId: string; parentId: string; commentId: string; externalUserSender: ExternalUserInfo; userSender: string; message: string; photo: string; video: string; } export interface postReaction { channelType: ChannelType; postId: string; parentId: string; commentId: string; externalUserSender: ExternalUserInfo; userSender: string; reaction: string; } export interface ExternalUserInfo { id: string; name: string; imageUrl: string; }