1
0
mirror of https://github.com/bitwarden/jslib synced 2026-01-07 19:13:15 +00:00
Files
jslib/common/src/abstractions/log.service.ts
Oscar Hinton 1016bbfb9e Split jslib into multiple modules (#363)
* Split jslib into multiple modules
2021-06-03 18:58:57 +02:00

12 lines
389 B
TypeScript

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];
}