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:
553 bytes
|
Rev | Line | |
---|
[d24f17c] | 1 | import { Replace as OReplace } from '../Object/Replace';
|
---|
| 2 | import { Match } from '../Any/_Internal';
|
---|
| 3 | import { Cast } from '../Any/Cast';
|
---|
| 4 | import { List } from './List';
|
---|
| 5 | /**
|
---|
| 6 | * Update with `A` the entries of `L` that match `M`
|
---|
| 7 | * @param O to update
|
---|
| 8 | * @param M to select fields
|
---|
| 9 | * @param A to update with
|
---|
| 10 | * @param match (?=`'default'`) to change precision
|
---|
| 11 | * @returns [[List]]
|
---|
| 12 | * @example
|
---|
| 13 | * ```ts
|
---|
| 14 | * ```
|
---|
| 15 | */
|
---|
| 16 | export declare type Replace<L extends List, M extends any, A extends any, match extends Match = 'default'> = Cast<OReplace<L, M, A, match>, List>;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.