15 lines
234 B
TypeScript
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;
|
|
};
|