Skip to content

Instantly share code, notes, and snippets.

@henrik1
Created June 19, 2022 21:19
Show Gist options
  • Select an option

  • Save henrik1/e3b10b4bdaa0ed8621190635fdc0954f to your computer and use it in GitHub Desktop.

Select an option

Save henrik1/e3b10b4bdaa0ed8621190635fdc0954f to your computer and use it in GitHub Desktop.
Pick type utility
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