Waste/Waste.Web.Entry/wwwroot/lib/microsoft/signalr/dist/esm/Loggers.d.ts

10 lines
384 B
TypeScript
Raw Normal View History

2021-08-11 08:16:16 +08:00
import { ILogger, LogLevel } from "./ILogger";
/** A logger that does nothing when log messages are sent to it. */
export declare class NullLogger implements ILogger {
/** The singleton instance of the {@link @microsoft/signalr.NullLogger}. */
static instance: ILogger;
private constructor();
/** @inheritDoc */
log(_logLevel: LogLevel, _message: string): void;
}