import { Functor } from './Functor'; export interface Alt extends Functor { alt(other: Alt): Alt; 'fantasy-land/alt'?: Alt['alt']; }