Page Contents
Home > @loopback/repository > DeepPartial
DeepPartial type
An extension of the built-in Partial
Signature:
export declare type DeepPartial<T> = Partial<T> | {
[P in keyof T]?: DeepPartial<T[P]>;
};
References: DeepPartial