// @flow import type { Applicative } from './Applicative' import type { Chain } from './Chain' export interface Monad extends Applicative, Chain {}