PartialBy<T, K extends undefined> Type alias

Create a type from given type T and make specified properties optional.

PartialBy = Omit<T, K> & Partial<Pick<T, K>>

Defined in

Last Updated: 25 April, 2024