UNPKG
@flowlab/all
Version:
latest (0.0.2)
0.0.2
0.0.1
A cool library focusing on handling various flows
github.com/countstarss/flowlab
countstarss/flowlab
@flowlab/all
/
packages
/
main
/
src
/
services
/
logger
/
interface.ts
6 lines
•
293 B
text/typescript
View Raw
1
2
3
4
5
6
export
interface
ILogger
{
debug
(
message
:
string
,
context
?:
Record
<
string
,
any
>):
void
;
info
(
message
:
string
,
context
?:
Record
<
string
,
any
>):
void
;
warn
(
message
:
string
,
context
?:
Record
<
string
,
any
>):
void
;
error
(
message
:
string
,
error
?:
Error
,
context
?:
Record
<
string
,
any
>):
void
; }