import { Level } from "./Level.js"; import { Log } from "./Log.js"; //#region src/withLog.d.ts type WithLog = (log: Log) => void; /** * Fabricate a new logger for the scoped callback from an existing logger with a new * threshold without affecting the registered logger. * * * @param log * @param threshold * @param callback */ declare const withLog: (log: Log, threshold: Level, callback: WithLog) => void; //#endregion export { withLog }; //# sourceMappingURL=withLog.d.ts.map