This commit is contained in:
Belén Curcio
2018-09-25 13:37:22 -03:00
parent 303c7489e4
commit 3edaa6bf2d
4 changed files with 13 additions and 21 deletions
@@ -5,13 +5,13 @@ import { HorizontalGutter, Typography } from "talk-ui/components";
import HistoryComment from "./HistoryComment";
interface Me {
comments: {
edges: Array<{
node: {
id: string;
body: string | null;
createdAt: any;
replyCount: number | null;
readonly comments: {
readonly edges: ReadonlyArray<{
readonly node: {
readonly id: string;
readonly body: string | null;
readonly createdAt: any;
readonly replyCount: number | null;
};
}>;
};