export interface Blog_int { url: string, is_private: string, } export interface Post_int { posts: { title: string; body: string; blog_url:string; } }