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
/
LogRecord.ts
10 lines
•
219 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
export
default
interface
LogRecord
{ message :
string
; context :
any
; level :
number
; levelName :
string
; channel :
string
; captureDateTime :
Date
;
addon
:
any
[];
toString
:
() =>
string
; }