export type Post = { title: string; uid?: string; content?: string; images?: string[]; linkUrl?: string; description?: string; location?: string; city?: string[]; latlng?: number[]; tags: string[]; postLikesCount: number; countries: string[]; userId: string; createdAt: any; _id: string; priorityCount: number; postCommentsCount: number; }; export const defaultPost: Post = { title: "", tags: [], postLikesCount: 0, countries: [], userId: "", createdAt: "", _id: "", uid: "", priorityCount: 0, postCommentsCount: 0, };