@loopback/docs
Version:
Documentation for LoopBack 4
25 lines (17 loc) • 633 B
Markdown
lang: en
title: 'API docs: repository.deeppartial'
keywords: LoopBack 4.0, LoopBack 4
sidebar: lb4_sidebar
permalink: /doc/en/lb4/apidocs.repository.deeppartial.html
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) > [@loopback/repository](./repository.md) > [DeepPartial](./repository.deeppartial.md)
## DeepPartial type
An extension of the built-in Partial<T> type which allows partial values in deeply nested properties too.
<b>Signature:</b>
```typescript
export declare type DeepPartial<T> = {
[P in keyof T]?: DeepPartial<T[P]>;
};
```