UNPKG

stryker-api

Version:

The api for the extendable JavaScript mutation testing framework Stryker

11 lines 451 B
import Logger from './Logger'; /** * Represents a factory to get loggers by category name. * This interface is used to describe the shape of a logger factory method. * * @param {String} [categoryName] name of category to log to. * @returns {Logger} instance of logger for the category */ declare type LoggerFactoryMethod = (categoryName?: string) => Logger; export default LoggerFactoryMethod; //# sourceMappingURL=LoggerFactoryMethod.d.ts.map