updated
This commit is contained in:
@@ -14,3 +14,33 @@ export interface ApiMediaItem {
|
|||||||
export interface ApiMedia {
|
export interface ApiMedia {
|
||||||
medium: ApiMediaItem;
|
medium: ApiMediaItem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ApiPostItem {
|
||||||
|
title: string;
|
||||||
|
slug: string;
|
||||||
|
user_id: string;
|
||||||
|
content: string;
|
||||||
|
publish_at: string;
|
||||||
|
hero: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ApiCollectionPost {
|
||||||
|
post: ApiPostItem;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ApiCollectionPosts {
|
||||||
|
posts: Array<ApiPostItem>;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ApiUser {
|
||||||
|
id: string;
|
||||||
|
username: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ApiCollectionUser {
|
||||||
|
user: ApiUser;
|
||||||
|
}
|
||||||
|
|
||||||
|
export interface ApiCollectionUsers {
|
||||||
|
users: Array<ApiUser>;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user