Sha256: 43726bb507c00fad304764a0b1e7d1e1e2485693d5748565853b84bcc76eae2c
Contents?: true
Size: 552 Bytes
Versions: 33
Compression:
Stored size: 552 Bytes
Contents
import {Except} from './except'; import {Simplify} from './simplify'; type Merge_<FirstType, SecondType> = Except<FirstType, Extract<keyof FirstType, keyof SecondType>> & SecondType; /** Merge two types into a new type. Keys of the second type overrides keys of the first type. @example ``` import {Merge} from 'type-fest'; type Foo = { a: number; b: string; }; type Bar = { b: number; }; const ab: Merge<Foo, Bar> = {a: 1, b: 2}; ``` @category Utilities */ export type Merge<FirstType, SecondType> = Simplify<Merge_<FirstType, SecondType>>;
Version data entries
33 entries across 33 versions & 1 rubygems