@remote.it/core
Version:
Core remote.it JavasScript/TypeScript library
44 lines (43 loc) • 674 B
TypeScript
declare type LogLevel =
| 'error'
| 'warn'
| 'info'
| 'verbose'
| 'debug'
| 'silly'
export declare class Logger {
static log(
level: LogLevel,
message: string,
data?: {
[key: string]: any
}
): void
static info(
message: string,
data?: {
[key: string]: any
}
): void
static warn(
message: string,
data?: {
[key: string]: any
}
): void
static error(
message: string,
data?: {
[key: string]: any
}
): void
static debug(
message: string,
data?: {
[key: string]: any
}
): void
static uninstall(): void
}
export {}
//# sourceMappingURL=Logger.d.ts.map