Creates an intersection type from a tuple of types Types.
Types
A readonly tuple of types.
type Inter = Intersection<[string, number, { a: boolean }]>; // string & number & { a: boolean } Copy
type Inter = Intersection<[string, number, { a: boolean }]>; // string & number & { a: boolean }
Creates an intersection type from a tuple of types
Types.