export interface ReelType {
  response_code: string;
  message: string;
  rescent_post: Post[];
  current_page: number;
  last_page: number;
  status: string;
}

export interface Post {
  post_id: number;
  user_id: number;
  text: string;
  location: string;
  post_type: string;
  status: number;
  is_delete: string;
  created_at: string;
  updated_at: string;
  post_videos: PostVideo[];
  username: string;
  profile_pic: string;
  total_likes: number;
  total_comments: number;
  is_likes: string;
  bookmark: string;
  total_share: number;
  is_follow: string;
}

export interface PostVideo {
  post_image_id: number;
  url: string;
  type: string;
  post_video_thumbnail: string;
}
