entangle.ts
Version:
A declarative, event-driven framework for orchestrating business logic in TypeScript & Node.js applications.
10 lines (9 loc) • 335 B
TypeScript
import { ILogger, ILog, LoggingMode, ELogType } from '../shared/types/Logging.types';
export declare class Logging {
private readonly mode;
private readonly logger;
private readonly logTypes;
constructor(mode: LoggingMode, logger: ILogger, logTypes?: ELogType[]);
log(logDetails: ILog): void;
private canLog;
}