monad-ts
Version:
Monad-ts is a small library implements some of key monads and way to chain them in a pipe (flow) in JavaScript and TypeScript. Angular 2+ compatible.
27 lines (24 loc) • 918 B
text/typescript
/**
* @description
* Entry point for all public APIs of the Monad-TS package.
*/
export {AsyncFlow} from "./src/asyncFlow";
export {cast} from "./src/services/cast";
export {clone} from "./src/services/clone";
export {D} from "./src/types/d";
export {debounceTime} from "./src/services/debounceTime";
export {Either} from "./src/either";
export {ErrorM} from "./src/error";
export {equality} from "./src/services/equality";
export {Flow} from "./src/flow";
export {hash} from "./src/services/hash";
export {Identity} from "./src/identity";
export {List} from "./src/list";
export {M} from "./src/interfaces/m";
export {Maybe} from "./src/maybe";
export {MF} from "./src/types/mf";
export {Monad} from "./src/monad";
export {Pr} from "./src/types/pr";
export {State} from "./src/state";
export {wait} from "./src/services/wait";
//Copyright (c) 2017 Alex Tranchenko. All rights reserved.