Layzur_Pro / src /types.js
Shinhati2023's picture
Upload 4 files
5fc8524 verified
Raw
History Blame Contribute Delete
301 Bytes
export interface User {
username;
bio?;
verified?;
followersCount?;
profilePicture?;
coverPhoto?;
}
export interface Post {
id;
username;
content;
media?;
profilePicture?;
createdAt;
likes;
verified?;
}
export type View = 'home' | 'search' | 'post' | 'profile' | 'auth';