UNPKG

fantasy-types

Version:

Fantasy Land types definitions

4 lines (3 loc) 78 B
export interface Functor<T> { map: <T1>(fn: (a: T) => T1) => Functor<T1>; }