@likeminds.community/feed-js
Version:
LikeMinds Javascript SDK for chat APIs
15 lines (14 loc) • 340 B
TypeScript
import { User } from "../models/member";
import { Reply } from "../models/replies";
export interface PostComment {
comment: Reply;
users: Record<string, User>;
}
export interface EditComment {
comment: Reply;
users: Record<string, User>;
}
export interface PostReply {
comment: Reply;
users: Record<string, User>;
}