UNPKG

loggish

Version:

Universal logger is a library designed for collect and process logs in apps

9 lines (8 loc) 209 B
import LoggerInterface from "./LoggerInterface"; export default interface LoggerAwareInterface { /** * Sets a logger instance on the object. */ setLogger(logger : LoggerInterface) : void; }