mirror of
https://github.com/emailerfacu-spec/minix-front.git
synced 2026-04-04 13:40:43 -03:00
añadido pagina de Posts, una store para la api, y header para mobile
This commit is contained in:
14
src/types.d.ts
vendored
Normal file
14
src/types.d.ts
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
export interface Post {
|
||||
_id: string;
|
||||
authorId: string;
|
||||
content: string;
|
||||
imageUrl?: string;
|
||||
parentPostId?: string;
|
||||
likesCount: number;
|
||||
repliesCount: number;
|
||||
createdAt: Date;
|
||||
updatedAt?: Date;
|
||||
isEdited: boolean;
|
||||
visibility: string;
|
||||
hashtags?: string[];
|
||||
}
|
||||
Reference in New Issue
Block a user