mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-23 11:43:48 +00:00
Copy jslib into Directory Connector [TI-6] (#262)
This commit is contained in:
11
jslib/common/src/abstractions/log.service.ts
Normal file
11
jslib/common/src/abstractions/log.service.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { LogLevelType } from "../enums/logLevelType";
|
||||
|
||||
export abstract class LogService {
|
||||
debug: (message: string) => void;
|
||||
info: (message: string) => void;
|
||||
warning: (message: string) => void;
|
||||
error: (message: string) => void;
|
||||
write: (level: LogLevelType, message: string) => void;
|
||||
time: (label: string) => void;
|
||||
timeEnd: (label: string) => [number, number];
|
||||
}
|
||||
Reference in New Issue
Block a user