@ugo-code/streamline.js
Version:
A utility module which provides straight-forward, powerful functions for working with asynchronous JavaScript
13 lines (12 loc) • 383 B
TypeScript
import * as array from "./array";
import * as crypto from "./crypto";
import * as retry from "./retry";
import { singleExecution } from "./singleExecution";
declare const _default: {
singleExecution: typeof singleExecution;
retry: typeof retry;
array: typeof array;
crypto: typeof crypto;
};
export default _default;
export { array, crypto, retry, singleExecution };