PartialBy<T, K extends undefined> Type
PartialBy = Omit<T, K> & Partial<Pick<T, K>>
Create a type from given type T
and make specified properties optional.
Defined in
Last Updated: 14 November, 2024
Found something wrong, missing, or unclear on this page?Raise an issue in our repo.