UNPKG

388 BTypeScriptView Raw
1import { Overwrite as OOverwrite } from '../Object/Overwrite';
2import { Cast } from '../Any/Cast';
3import { List } from './List';
4/**
5 * Update the entries of `L` with the ones of `L1`
6 * @param L to update
7 * @param L1 to update with
8 * @returns [[Object]]
9 * @example
10 * ```ts
11 * ```
12 */
13export declare type Overwrite<L extends List, L1 extends object> = Cast<OOverwrite<L, L1>, List>;