UNPKG

true-myth

Version:

A library for safe functional programming in JavaScript, with first-class support for TypeScript

16 lines (15 loc) 636 B
/** This is just here to re-export {@link Maybe}, {@link Result}, {@link Unit}, and {@link Toolbelt} – that is, to provide a root-level entry amenable to use with Node with TypeScript versions before 4.7 and its ESM support, or for convenience. @packageDocumentation */ export { default as Maybe } from './maybe.cjs'; export * as MaybeNS from './maybe.cjs'; export { default as Result } from './result.cjs'; export * as ResultNS from './result.cjs'; export { default as Unit } from './unit.cjs'; export { default as Task } from './task.cjs'; export * as Toolbelt from './toolbelt.cjs'; //# sourceMappingURL=index.d.ts.map