UNPKG

fantasy-types

Version:

Fantasy Land types definitions

8 lines (5 loc) 169 B
import { Apply } from "./Apply"; export interface Applicative<T> extends Apply<T> {} export interface ApplicativeConstructor { of: <T1>(a: T1) => Applicative<T1>; }