ts-toolbelt
Version:
TypeScript's largest utility library
15 lines (14 loc) • 501 B
TypeScript
import { IntersectKeys } from './IntersectKeys';
import { Match } from '../Any/_Internal';
import { Pick } from './Pick';
/**
* Get the intersecting fields of `O` & `O1`
* (If `match = 'default'`, no type checks are done)
* @param O to check similarities with
* @param O1 to check similarities against
* @returns [[Object]]
* @example
* ```ts
* ```
*/
export declare type Intersect<O extends object, O1 extends object, match extends Match = 'default'> = Pick<O, IntersectKeys<O, O1, match>>;