1 | import { Match } from '../Any/_Internal';
|
2 | import { Includes as OIncludes } from '../Object/Includes';
|
3 | import { ObjectOf } from './ObjectOf';
|
4 | import { List } from './List';
|
5 | /**
|
6 | * Check whether `L` has entries that match `M`
|
7 | * @param L to be inspected
|
8 | * @param M to check entry type
|
9 | * @param match (?=`'default'`) to change precision
|
10 | * @returns [[Boolean]]
|
11 | * @example
|
12 | * ```ts
|
13 | * ```
|
14 | */
|
15 | export declare type Includes<L extends List, M extends any, match extends Match = 'default'> = OIncludes<ObjectOf<L>, M, match>;
|