-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] Fixed exports and tsconfig. (#126)
* fix: Fixed missing exports. * fix: Update tsconfig lib to ES2018 and target to ES2015. This will fix the error on handlePromise inside throttle-async-executor.ts * Revert target to ES6.
- Loading branch information
1 parent
4051dd4
commit a8f3d74
Showing
3 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
export { delegate } from './delegate'; | ||
export { delegatify } from './delegatify'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
export { execTime } from './exec-time'; | ||
export { ReportFunction, ExactTimeReportData, ExactTimeReportable } from './exec-time.model'; | ||
export { ExactTimeReportable, ExactTimeReportData, ReportFunction } from './exec-time.model'; | ||
export { execTimify } from './exec-timify'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters