import Apply from '../Apply'; export * as Apply from '../Apply'; export interface Chain extends Apply { chain(fn: (value: A) => Chain): Chain; } export default Chain;