summaryrefslogtreecommitdiffstats
path: root/src/components/organisms/layout/summary.stories.tsx
blob: 0b91e2472f62b561c0724d478f1ff506cd1e1494 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
generated by cgit v1.2.3 (git 2.39.1) at 2025-11-01 09:46:06 +0000
 


======================================================================

export type CommentData = {
  author: string;
  authorEmail: string;
  authorUrl: string;
  content: string;
  parent: number;
  commentOn: number;
  mutationId: string;
};

export type CreatedComment = {
  clientMutationId: string;
  success: boolean;
  comment: null | {
    approved: boolean;
  };
};

export type CreateComment = {
  createComment: CreatedComment;
};