export interface AllPost {
  status: string;
  message: string;
  post: Post[];
}

export interface Post {
  post_id: string;
  user_id: string;
  text: string;
  image: Image[];
  type: string;
  location: string;
  created_at: Date;
  is_likes: string;
  total_likes: number;
  total_comments: number;
  total_view: number;
  total_share: string;
  bookmark: string;
  comment: any[];
  profile_image: string;
  username: string;
}

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


