import { Not } from '../boolean/Not'; import { And } from '../boolean/And'; import { Matches } from './Matches'; /** * Check if a type is an instance of another, that is, matches it but is not equal (`<`). */ export type InstanceOf = And, Not>>;