DEV Community

Stephen Gbolagade
Stephen Gbolagade

Posted on

Do you know you can do this in TypeScript to make your code cleaner? interface Author { id: string name: string posts: { title: string slug: string }[] } type AuthorPosts = Author["posts"] OR type AuthorPosts = Pick<Author, "posts">

Top comments (0)