import {And} from './And' import {nothing} from './nothing' import {something} from './something' export type IsAny = And // let a: IsAny<'a'> = '' as any // // if(a === true) { // } // if(a === false) { // } // // // let b: IsAny = '' as any // // if(b === true) { // } // if(b === false) { // } // // let c: IsAny = '' as any // // if(c === true) { // } // if(c === false) { // }