// @flow import { HKT } from './HKT' import type { Functor } from './Functor' export interface Alt extends Functor { alt(fx: HKT, fy: HKT): HKT }