Skip to content

Commit

Permalink
strict exports (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
sha1n authored Jan 21, 2022
1 parent eccc860 commit 04ff39e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
13 changes: 10 additions & 3 deletions index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
export * from './lib/timeunit';
export * from './lib/utilities';
export * from './lib/retry';
export { TimeUnit, toMilliseconds } from './lib/timeunit';
export { sleep, delay, stopwatch, until, eventually } from './lib/utilities';
export {
RetryPolicy,
retryAround,
retriable,
fixedRetryPolicy,
simpleRetryPolicy,
exponentialBackoffRetryPolicy
} from './lib/retry';
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sha1n/about-time",
"version": "0.0.3",
"version": "0.0.4",
"description": "A set of essential time related utilities",
"repository": "https://github.com/sha1n/about-time",
"author": "Shai Nagar",
Expand Down

0 comments on commit 04ff39e

Please sign in to comment.