interface Comment {
    author: Author;
    createdAt: number;
    id: number;
    isAnonymous: boolean;
    message: string;
    numComments: number;
    type: "comment";
}

Properties

author: Author
createdAt: number
id: number
isAnonymous: boolean
message: string
numComments: number
type: "comment"