UNPKG

patchwork-mapconverter

Version:

Executable wrapper for https://github.com/ChiefOfGxBxL/WC3MapTranslator

14 lines (13 loc) 482 B
import { type ILogObj, Logger } from 'tslog'; declare const LOG_SILLY = 0; declare const LOG_TRACE = 1; declare const LOG_DEBUG = 2; declare const LOG_INFO = 3; declare const LOG_WARN = 4; declare const LOG_ERROR = 5; declare const LOG_FATAL = 6; declare const LoggerFactory: { setLogLevel: (logLevel: number) => void; createLogger: (module: string) => Logger<ILogObj>; }; export { LoggerFactory, LOG_SILLY, LOG_TRACE, LOG_DEBUG, LOG_INFO, LOG_WARN, LOG_ERROR, LOG_FATAL };