UNPKG
loggish
Version:
latest (0.0.1)
0.0.1
Universal logger is a library designed for collect and process logs in apps
loggish
/
src
/
LoggerAwareInterface.ts
9 lines
(8 loc)
•
209 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
LoggerInterface
from
"./LoggerInterface"
;
export
default
interface
LoggerAwareInterface
{
/** * Sets a logger instance on the object. */
setLogger
(logger :
LoggerInterface
) :
void
; }