#typescript
Read more stories on Hashnode
Articles with this tag
Day 1,2,3 East peasy for now. Day 4 type Address = { address: string; city: string }; type PresentDeliveryList<T> = Record<keyof T, Address>; Learnt...