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)
Subscribe
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)