1 | import { FilterKeys as OFilterKeys } from '../Object/FilterKeys';
|
2 | import { Match } from '../Any/_Internal';
|
3 | import { ObjectOf } from './ObjectOf';
|
4 | import { List } from './List';
|
5 | /**
|
6 | * Filter out the keys of `L` which entries match `M`
|
7 | * @param L to remove from
|
8 | * @param M to select entries
|
9 | * @param match (?=`'default'`) to change precision
|
10 | * @returns [[Key]]
|
11 | * @example
|
12 | * ```ts
|
13 | * ```
|
14 | */
|
15 | export declare type FilterKeys<L extends List, M extends any, match extends Match = 'default'> = OFilterKeys<ObjectOf<L>, M, match>;
|