interface ChapterComment {
    author: {
        avatar: string;
        id: number;
        name: string;
    };
    content: string;
    id: number;
    posted: number;
}

Properties

Properties

author: {
    avatar: string;
    id: number;
    name: string;
}
content: string
id: number
posted: number