PickRequired
Make a type required.
Signature
type PickRequired<T, K extends keyof T> = { [P in K]-?: T[P];} & Omit<T, K>;Members
This export does not declare public properties or methods in the generated declaration file.
Make a type required.
type PickRequired<T, K extends keyof T> = { [P in K]-?: T[P];} & Omit<T, K>;This export does not declare public properties or methods in the generated declaration file.