export type IsTuple<Type> = Type extends readonly any[] ? (any[] extends Type ? never : Type) : never;
