ts-toolbelt
Version:
TypeScript's largest utility library
17 lines (16 loc) • 613 B
TypeScript
import { ExcludeKeys as OExcludeKeys } from '../Object/ExcludeKeys';
import { Match } from '../Any/_Internal';
import { ObjectOf } from './ObjectOf';
import { List } from './List';
/**
* Exclude the keys of `L1` out of the keys of `L`
* (If `match = 'default'`, no type checks are done)
* @param L to remove the keys from
* @param L1 to remove the keys out
* @param match (?=`'default'`) to change precision
* @returns [[Key]]
* @example
* ```ts
* ```
*/
export declare type ExcludeKeys<L extends List, L1 extends List, match extends Match = 'default'> = OExcludeKeys<ObjectOf<L>, ObjectOf<L1>, match>;