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:
566 bytes
|
Rev | Line | |
---|
[d24f17c] | 1 | import { Match } from '../Any/_Internal';
|
---|
| 2 | import { IntersectKeys as OIntersectKeys } from '../Object/IntersectKeys';
|
---|
| 3 | import { ObjectOf } from './ObjectOf';
|
---|
| 4 | import { List } from './List';
|
---|
| 5 | /**
|
---|
| 6 | * Get the intersecting entries of `L` & `L1`
|
---|
| 7 | * (If `match = 'default'`, no type checks are done)
|
---|
| 8 | * @param L to check similarities with
|
---|
| 9 | * @param L1 to check similarities against
|
---|
| 10 | * @returns [[Key]]
|
---|
| 11 | * @example
|
---|
| 12 | * ```ts
|
---|
| 13 | * ```
|
---|
| 14 | */
|
---|
| 15 | export declare type IntersectKeys<L extends List, L1 extends List, match extends Match = 'default'> = OIntersectKeys<ObjectOf<L>, L1, match>;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.