Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 1.66 KB

File metadata and controls

21 lines (13 loc) · 1.66 KB

RequiredByKeys medium #object

by jiangshan @jiangshanmeta

Take the Challenge    简体中文

Implement a generic RequiredByKeys<T, K> which takes two type argument T and K.

K specify the set of properties of T that should set to be required. When K is not provided, it should make all properties required just like the normal Required<T>.

For example

interface User {
  name?: string
  age?: number
  address?: string
}

type UserRequiredName = RequiredByKeys<User, 'name'> // { name: string; age?: number; address?: string }

Back Share your Solutions Check out Solutions