source: node_modules/ts-toolbelt/out/List/SelectKeys.d.ts

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: 524 bytes
Line 
1import { Match } from '../Any/_Internal';
2import { SelectKeys as OSelectKeys } from '../Object/SelectKeys';
3import { ObjectOf } from './ObjectOf';
4import { List } from './List';
5/**
6 * Get the keys of `L` which entries match `M`
7 * @param L to extract from
8 * @param M to select entries
9 * @param match (?=`'default'`) to change precision
10 * @returns [[Key]]
11 * @example
12 * ```ts
13 * ```
14 */
15export declare type SelectKeys<L extends List, M extends any, match extends Match = 'default'> = OSelectKeys<ObjectOf<L>, M, match>;
Note: See TracBrowser for help on using the repository browser.