This commit is contained in:
2023-04-26 11:29:22 +10:00
parent fec4b29261
commit f2da168a03

View File

@@ -72,12 +72,13 @@ export interface Article {
id: string;
title: string;
slug: string;
user_id: string;
user: User;
content: string;
publish_at: string;
hero: Media;
attachments: Array<Media>;
created_at: string;
updated_at: string;
}
export interface ArticleResponse {