add log service abstraction
This commit is contained in:
parent
e8814e8864
commit
9adabdab48
|
@ -0,0 +1,7 @@
|
|||
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;
|
||||
}
|
Loading…
Reference in New Issue