UNPKG

190 BPlain TextView Raw
1//Interface provided to break circular dependency between context and Logger.
2// Context will take an ILogger instead of a logger.
3export interface ILogger {
4 log(message: string):void;
5}
\No newline at end of file