🔧 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">
Nachrichtenbereich: 🔧 Programmierung
🔗 Quelle: dev.to
...