UNPKG

fantasy-types

Version:

Fantasy Land types definitions

6 lines (4 loc) 136 B
import { Functor } from "./Functor"; export interface Apply<T> extends Functor<T> { ap: <T1>(a: Apply<(b: T) => T1>) => Apply<T1>; }