interface Post {
    author: string;
    content: string;
    date: Date;
    id: number;
    topicId: number;
}

Properties

author: string
content: string
date: Date
id: number
topicId: number