UNPKG

fantasy-types

Version:

Fantasy Land types definitions

6 lines (4 loc) 143 B
import { Functor } from "./Functor"; export interface Extend<T> extends Functor<T> { extend: <T1>(f: (a: Extend<T>) => T1) => Extend<T1>; }