1
0
mirror of https://git.hibas.dev/OpenServer/NodeLogging.git synced 2025-07-01 12:41:11 +00:00

Fixing undefined type on default export

This commit is contained in:
Fabian Stamm
2018-09-28 12:03:48 +02:00
parent 19097d2831
commit 51c519ce75
4 changed files with 4 additions and 4 deletions

View File

@ -292,7 +292,7 @@ export class LoggingBase {
}
}
export let Logging = undefined;
export let Logging: LoggingBase = undefined;
if (process.env.LOGGING_NO_DEFAULT !== "true") {
Logging = new LoggingBase();
}