@tempots/std

Merge type

Represents the type resulting from merging two types A and B. The resulting type is the intersection of A and B.

Signature:

export type Merge<A, B> = Id<A & B>;

References: Id