1 interface Post { 2 id: string; 3 title: string; 4 content: string; 5 created_at: string; // this should be an iso 8601 string 6 } 7 8 interface Blog { 9 blog_name: string; 10 posts: Post[] 11 } 12 13 export { Blog, Post }