UNPKG

386 BTypeScriptView Raw
1import ILoggerStrategy, { LogLevels } from "./ILoggerStrategy";
2/**
3 * A logger strategy doesn't log anything.
4 *
5 * @export
6 * @class NoLoggerStrategy
7 * @implements {ILoggerStrategy}
8 */
9export default class NoLoggerStrategy implements ILoggerStrategy {
10 log(level: LogLevels, message: string, contextID?: string | undefined): void;
11}
12//# sourceMappingURL=NoLoggerStrategy.d.ts.map
\No newline at end of file