UNPKG

rambdax

Version:

Extended version of Rambda - a lightweight, faster alternative to Ramda

16 lines (14 loc) 361 B
import {Depth} from '../Object/_Internal' import {RequiredPart} from '../Object/Required' import {List} from './List' /** Make `L` required (deeply or not) @param L to make required @param depth (?=`'flat'`) to do it deeply @returns [[List]] @example ```ts ``` */ export type Required<L extends List, depth extends Depth = 'flat'> = RequiredPart<L, depth>