UNPKG
log4ts
Version:
latest (0.4.2)
0.4.2
0.4.1
0.4.0
0.3.0
0.2.0
0.1.3
0.1.2
0.1.1
TypeScript logging library
github.com/koroandr/log4ts
koroandr/log4ts
log4ts
/
build
/
ILayout.d.ts
8 lines
(7 loc)
•
173 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
LogEntry
}
from
"./LogEntry"
;
export
interface
ILayout
{
format
(
entry
:
LogEntry
):
string
; }
export
interface
ILayoutFunction
{ (
entry
:
LogEntry
):
string
; }