Files
basango/apps/mobile-legacy/src/api/schema/feed-management/comment.ts
T

15 lines
234 B
TypeScript

export type Comment = {
id: string;
content: string;
user: {
id: string;
name: string;
};
sentiment: "positive" | "neutral" | "negative";
createdAt: string;
};
export type CommentPayload = {
content: string;
};