type NOT_EQUAL_INTERNAL = UnionToIntersection extends UnionToIntersection ? UnionToIntersection extends UnionToIntersection ? false : true : true export type Expect = T export type ExpectTrue = T export type ExpectFalse = T export type NotEqual = true extends NOT_EQUAL_INTERNAL ? true : false export type Equal = NotEqual extends false ? true : false export type ExpectExtends = EXPECTED extends VALUE ? true : false export type ExpectValidArgs any, ARGS extends any[]> = ARGS extends Parameters ? true : false export type UnionToIntersection = (U extends any ? (k: U) => void : never) extends (k: infer I) => void ? I : never