import { Apply } from './Apply'; export interface Applicative extends Apply { of(value: T): Applicative; 'fantasy-land/of'?: Applicative['of']; }