export interface IPost{ postId: number; slug: string; title: string; description: string; categories: string[]; postUrl: string; likes: number; views: number; comments: number; image: string; createdDate: string; modifiedDate: string; }