generated from lucien/actix-react-template
13 lines
No EOL
205 B
TypeScript
13 lines
No EOL
205 B
TypeScript
interface Article {
|
|
id: number;
|
|
title: string;
|
|
content: string;
|
|
}
|
|
|
|
interface ArticlePreview {
|
|
id: number;
|
|
title: string;
|
|
preview: string;
|
|
}
|
|
|
|
export type { Article, ArticlePreview }; |