aboutsummaryrefslogtreecommitdiffstats
path: root/src/ts/types/comments.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/ts/types/comments.ts')
-rw-r--r--src/ts/types/comments.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ts/types/comments.ts b/src/ts/types/comments.ts
index 75e7d23..36bd98c 100644
--- a/src/ts/types/comments.ts
+++ b/src/ts/types/comments.ts
@@ -2,6 +2,14 @@
// Comments query
//==============================================================================
+export type CommentsByPostId = {
+ postBy: {
+ comments: {
+ nodes: RawComment[];
+ };
+ };
+};
+
export type CommentAuthor = {
gravatarUrl: string;
name: string;