bitwarden-estensione-browser/src/abstractions/log.service.ts

8 lines
242 B
TypeScript
Raw Normal View History

2018-02-24 04:10:58 +01:00
export abstract class LogService {
debug: (message: string) => void;
info: (message: string) => void;
warning: (message: string) => void;
error: (message: string) => void;
write: (type: string, message: string) => void;
}