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:
618 bytes
|
Line | |
---|
1 | import { Match } from '../Any/_Internal';
|
---|
2 | import { ListOf } from '../Object/ListOf';
|
---|
3 | import { Exclude as OExclude } from '../Object/Exclude';
|
---|
4 | import { ObjectOf } from './ObjectOf';
|
---|
5 | import { List } from './List';
|
---|
6 | /**
|
---|
7 | * Exclude the entries of `L1` out of `L`
|
---|
8 | * (If `match = 'default'`, no type checks are done)
|
---|
9 | * @param L to remove from
|
---|
10 | * @param L1 to remove out
|
---|
11 | * @param match (?=`'default'`) to change precision
|
---|
12 | * @returns [[List]]
|
---|
13 | * @example
|
---|
14 | * ```ts
|
---|
15 | * ```
|
---|
16 | */
|
---|
17 | export declare type Exclude<L extends List, L1 extends List, match extends Match = 'default'> = ListOf<OExclude<ObjectOf<L>, ObjectOf<L1>, match>>;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.