UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.

12 lines (11 loc) 372 B
import { Logger } from "./Logger"; import { LoggerOptions } from "./LoggerOptions"; /** * Helps to create logger instances. */ export declare class LoggerFactory { /** * Creates a new logger depend on a given connection's driver. */ create(logger?: "advanced-console" | "simple-console" | "file" | "debug" | Logger, options?: LoggerOptions): Logger; }