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