Created
June 19, 2022 21:19
-
-
Save henrik1/e3b10b4bdaa0ed8621190635fdc0954f to your computer and use it in GitHub Desktop.
Pick type utility
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type Article = { | |
| title: string; | |
| body: string; | |
| image: string; | |
| } | |
| type ArticlePreview = Pick<Article, 'title' | 'body'> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment