src/app/_models/post.model.ts
author |
author: |
Type : string
|
comments |
comments: |
Type : Comment[]
|
content |
content: |
Type : string
|
date |
date: |
Type : string
|
objectID |
objectID: |
Type : string
|
tags |
tags: |
Type : string[]
|
title |
title: |
Type : string
|
export interface Post {
objectID: string;
title: string;
content: string;
author: string;
tags: string[];
date: string;
comments: Array<Comment>;
}
export interface Comment {
author: string;
comment: string;
date: string;
profilePhoto: string;
}