typeorm
Version:
Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, MongoDB databases.
14 lines (13 loc) • 340 B
TypeScript
/**
* Logging options.
*/
export declare type LoggerOptions = boolean | "all" | ("query" | "schema" | "error" | "warn" | "info" | "log" | "migration")[];
/**
* File logging option.
*/
export declare type FileLoggerOptions = {
/**
* Specify custom path for log file, relative to application root
*/
logPath: string;
};