projet-nuitinfo-2024/front/src/types.ts
2024-12-06 00:37:52 +01:00

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 };