Module: util/type/intersection
References
default
Renames and re-exports Intersection
Type Aliases
Intersection
Ƭ Intersection<Types>: Types extends [infer Head, ...(infer Tail)] ? Head & Intersection<Tail> : unknown
A common type that represents an intersection of types.
See
https://www.typescriptlang.org/docs/handbook/2/objects.html#intersection-types
Type parameters
| Name | Type |
|---|---|
Types | extends unknown[] |