UNPKG

372 BTypeScriptView Raw
1import { Logger } from "./Logger";
2import { LoggerOptions } from "./LoggerOptions";
3/**
4 * Helps to create logger instances.
5 */
6export declare class LoggerFactory {
7 /**
8 * Creates a new logger depend on a given connection's driver.
9 */
10 create(logger?: "advanced-console" | "simple-console" | "file" | "debug" | Logger, options?: LoggerOptions): Logger;
11}