/** * The following code is modified based on * https://github.com/webpack/webpack/blob/4b4ca3b/lib/logging/createConsoleLogger.js * * MIT Licensed * Author Tobias Koppers @sokra * Copyright (c) JS Foundation and other contributors * https://github.com/webpack/webpack/blob/main/LICENSE */ /** * @param {LoggerOptions} options options object * @returns {function(string, LogTypeEnum, any[]): void} logging function */ declare const _default: ({ level, debug, console }: any) => (name: any, type: any, args: any) => void; export = _default;