import { IPost } from "../models/post.model"; export interface IBlog{ blogUrl: string; posts: IPost[]; }