Add Level types

This commit is contained in:
Ivkaa 2019-05-02 10:32:50 +02:00
parent 0902620436
commit 05f91c506a

5
types/log4js.d.ts vendored
View File

@ -47,7 +47,10 @@ export interface Level {
isLessThanOrEqualTo(other: string): boolean;
isLessThanOrEqualTo(otherLevel: Level): boolean;
isGreaterThanOrEqualTo(other: string): boolean;
isGreaterThanOrEqualTo(otherLevel: Level): boolean;
isGreaterThanOrEqualTo(otherLevel: Level): boolean;
colour: string;
level: number;
levelStr: string;
}
export interface LoggingEvent {