We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb15e88 commit ab5ded1Copy full SHA for ab5ded1
2 files changed
core/common/package.json
@@ -103,7 +103,7 @@
103
"sinon": "^5.0.2",
104
"source-map-support": "^0.5.4",
105
"through2": "^2.0.3",
106
- "typescript": "^2.8.1",
+ "typescript": "~2.9.1",
107
"uuid": "^3.2.1"
108
}
109
core/common/src/logger-compat.ts
@@ -31,6 +31,7 @@ export interface CustomLevelsLoggerConfig extends LoggerConfig {
31
32
// tslint:disable:no-any
33
export type CustomLevelsLogger = {
34
+ [kFormat]: (...args: any[]) => string;
35
[logLevel: string]: (...args: any[]) => CustomLevelsLogger;
36
}&{
37
format: (...args: any[]) => string;
0 commit comments