Photo of Gil Creque in a pink TV

Worm Icon U s i n g P i c k & l t ; T , K & g t ; i n T y p e S c r i p t

🌱 seed

Using Pick<T,K> in TypeScript

I used Pick<T,K> for the first time today in TypeScript. I had been using Partial<T> for a while to allow some properties of a class/interface to be used in other places in my application. After doing a lot more reading on TypeScript lately I decided to find a way to grab specific properties from a class/interface and lo and behold that’s what Pick<T,K> is for. I was going to do a write up on how I am using it but I found a post that sums it up quite nicely.