1 | /**
|
2 | This is just here to re-export {@link Maybe}, {@link Result}, {@link Unit},
|
3 | and {@link Toolbelt} – that is, to provide a root-level entry amenable to use
|
4 | with Node with TypeScript versions before 4.7 and its ESM support, or for
|
5 | convenience.
|
6 |
|
7 | @packageDocumentation
|
8 | */
|
9 | export { default as Maybe } from './maybe.js';
|
10 | export * as MaybeNS from './maybe.js';
|
11 | export { default as Result } from './result.js';
|
12 | export * as ResultNS from './result.js';
|
13 | export { default as Unit } from './unit.js';
|
14 | export * as Toolbelt from './toolbelt.js';
|
15 | //# sourceMappingURL=index.d.ts.map |
\ | No newline at end of file |