This repository has been archived on 2019-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
TyperLog/build/typerlog.d.ts

21 lines
457 B
TypeScript

declare module TyperLog {
class TyperLog {
private static logLevel;
private static console;
static Log(message: string, level: TyperLogLevel, category?: string): void;
private static;
}
}
declare module TyperLog {
enum TyperLogLevel {
EMERGENCY = 0,
ALERT = 1,
CRITICAL = 2,
ERROR = 3,
WARNING = 4,
NOTICE = 5,
INFORMATIONAL = 6,
DEBUG = 7,
}
}