@naturalcycles/js-lib
Advanced tools
Comparing version 2.0.2 to 2.1.0
@@ -0,1 +1,8 @@ | ||
# [2.1.0](https://github.com/NaturalCycles/js-lib/compare/v2.0.2...v2.1.0) (2019-02-16) | ||
### Features | ||
* export ClassType ([ce897fa](https://github.com/NaturalCycles/js-lib/commit/ce897fa)) | ||
## [2.0.2](https://github.com/NaturalCycles/js-lib/compare/v2.0.1...v2.0.2) (2019-02-10) | ||
@@ -2,0 +9,0 @@ |
@@ -8,3 +8,3 @@ import { memo } from './decorators/memo.decorator'; | ||
import { deepFreeze, runAllTests, silentConsole, silentConsoleIfRunAll } from './testing/test.shared.util'; | ||
import { PromiseMap, StringMap } from './types'; | ||
import { ClassType, PromiseMap, StringMap } from './types'; | ||
import { errorSharedUtil } from './util/error.shared.util'; | ||
@@ -15,2 +15,2 @@ import { objectUtil } from './util/object.util'; | ||
import { stringSharedUtil } from './util/string.shared.util'; | ||
export { memo, memoCache, ErrorData, ErrorObject, HttpErrorData, ErrorResponse, AppError, HttpError, deepFreeze, silentConsole, runAllTests, silentConsoleIfRunAll, errorSharedUtil, objectUtil, randomSharedUtil, scriptSharedUtil, stringSharedUtil, StringMap, PromiseMap, LOG_LEVEL, BasicLogFunction, LogFunction, }; | ||
export { memo, memoCache, ErrorData, ErrorObject, HttpErrorData, ErrorResponse, AppError, HttpError, deepFreeze, silentConsole, runAllTests, silentConsoleIfRunAll, errorSharedUtil, objectUtil, randomSharedUtil, scriptSharedUtil, stringSharedUtil, StringMap, PromiseMap, ClassType, LOG_LEVEL, BasicLogFunction, LogFunction, }; |
@@ -13,1 +13,2 @@ /** | ||
} | ||
export declare type ClassType<T = any> = new (...args: any[]) => T; |
{ | ||
"name": "@naturalcycles/js-lib", | ||
"version": "2.0.2", | ||
"version": "2.1.0", | ||
"scripts": { | ||
@@ -19,3 +19,3 @@ "build": "del ./dist && tsc", | ||
"@naturalcycles/semantic-release": "^1.0.0", | ||
"@naturalcycles/shared-module": "^1.0.25", | ||
"@naturalcycles/shared-module": "^2.1.1", | ||
"@types/jest": "^23.3.5", | ||
@@ -22,0 +22,0 @@ "@types/node": "^10.0.0", |
@@ -13,3 +13,3 @@ import { memo } from './decorators/memo.decorator' | ||
} from './testing/test.shared.util' | ||
import { PromiseMap, StringMap } from './types' | ||
import { ClassType, PromiseMap, StringMap } from './types' | ||
import { errorSharedUtil } from './util/error.shared.util' | ||
@@ -41,2 +41,3 @@ import { objectUtil } from './util/object.util' | ||
PromiseMap, | ||
ClassType, | ||
LOG_LEVEL, | ||
@@ -43,0 +44,0 @@ BasicLogFunction, |
@@ -14,1 +14,3 @@ /** | ||
} | ||
export type ClassType<T = any> = new (...args: any[]) => T |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
101842
1824