UNPKG
slf
Version:
latest (2.0.3)
2.0.3
2.0.2
2.0.1
2.0.0
1.1.0
1.0.3
1.0.2
1.0.1
1.0.0
0.1.3
0.1.2
0.1.1
0.1.0
0.0.1
Simple Logging Facade
github.com/surikaterna/slf
surikaterna/slf
slf
/
lib
/
ConsoleLogger.d.ts
7 lines
(6 loc)
•
206 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
Event
}
from
'./LoggerFactory'
;
/** * Implementation of a tiny logging provider using the console.log */
declare
const
factory
:
(
event
:
Event
) =>
void
;
export
{ factory
as
ConsoleLogger
};