aboutsummaryrefslogtreecommitdiffstats
path: root/src/ts/types/app.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/ts/types/app.ts')
-rw-r--r--src/ts/types/app.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ts/types/app.ts b/src/ts/types/app.ts
index 7bf1541..c11c31b 100644
--- a/src/ts/types/app.ts
+++ b/src/ts/types/app.ts
@@ -39,13 +39,13 @@ export type CommentMeta = {
date: string;
};
-export type Comment = {
+export type SingleComment = {
approved: boolean;
content: string;
id: number;
meta: CommentMeta;
parentId?: number;
- replies: Comment[];
+ replies: SingleComment[];
};
export type Dates = {