import { And } from '../boolean/And'; import { IsArrayType } from './IsArrayType'; import { InstanceOf } from '../type/InstanceOf'; /** * Check whether a type is a tuple type */ export type IsTuple = And, InstanceOf>;