Merge pull request #1276 from taozi0818/taoz1/fix_types

fix: Logger has not export in entry file
This commit is contained in:
Lam Wei Li 2022-07-06 10:04:12 +08:00 committed by GitHub
commit 1ca79dad40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
types/log4js.d.ts vendored
View File

@ -402,8 +402,8 @@ export interface Recording {
erase(): void;
}
export class Logger {
constructor(name: string);
export interface Logger {
new (name: string): Logger;
readonly category: string;
level: Level | string;