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: 20 June, 2023
Create a type from given type T
and make specified properties optional.
PartialBy = Omit<T, K> & Partial<Pick<T, K>>
Last Updated: 20 June, 2023