main
Last change
on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
388 bytes
|
Rev | Line | |
---|
[d24f17c] | 1 | import { Overwrite as OOverwrite } from '../Object/Overwrite';
|
---|
| 2 | import { Cast } from '../Any/Cast';
|
---|
| 3 | import { 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 | */
|
---|
| 13 | export declare type Overwrite<L extends List, L1 extends object> = Cast<OOverwrite<L, L1>, List>;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.