UNPKG
ethereum-lite-explorer
Version:
latest (1.0.0-beta.8)
1.0.0-beta.8
Ethereum Lite Explorer
ethereum-lite-explorer
/
src
/
app
/
util
/
log
/
ILogger.ts
7 lines
(6 loc)
•
230 B
text/typescript
View Raw
1
2
3
4
5
6
7
export
interface
ILogger
{
error
(
message
:
string
,
cause
:
Error
,
context
?:
any
):
void
;
error
(
message
:
string
|
Error
,
context
?:
any
):
void
;
warn
(
message
:
string
,
context
?:
any
):
void
;
info
(
message
:
string
):
void
; }