11 lines
141 B
TypeScript
11 lines
141 B
TypeScript
export interface Post {
|
|
id: number;
|
|
title: string;
|
|
tldr: string;
|
|
content: string;
|
|
}
|
|
|
|
export interface Comment {
|
|
content: string;
|
|
}
|