export default interface IBlogComment { readonly id: string; readonly username: string; readonly comment: string; readonly publicationDate: Date; readonly subComments: IBlogSubComment[]; } export interface IBlogSubComment { readonly id: string; readonly username: string; readonly subComment: string; readonly publicationDate: Date; }