UNPKG

node-flyway

Version:

Apply version control to databases from within a Node.js application.

8 lines (7 loc) 295 B
import debug from "debug"; export type Logger = { log: debug.Debugger; }; export type LoggerType = "default" | "integration-test"; export declare const getLogger: (loggerName: string, loggerType?: LoggerType) => Logger; export declare const enableLogging: (loggerType?: LoggerType) => void;