1 | import { Depth } from '../Object/_Internal';
|
2 | import { RequiredPart } from '../Object/Required';
|
3 | import { List } from './List';
|
4 | import { Cast } from '../Any/Cast';
|
5 | /**
|
6 | * Make `L` required (deeply or not)
|
7 | * @param L to make required
|
8 | * @param depth (?=`'flat'`) 'deep' to do it deeply
|
9 | * @returns [[List]]
|
10 | * @example
|
11 | * ```ts
|
12 | * ```
|
13 | */
|
14 | export declare type Required<L extends List, depth extends Depth = 'flat'> = Cast<RequiredPart<L, depth>, List>;
|