import { Fn } from '../Fn'; import { IfInvoking, Input } from '../utils'; export interface And extends Fn { out: IfInvoking>, boolean>; } export type InvokeAnd = [B] extends [true] ? true : false;