9 lines
242 B
TypeScript
9 lines
242 B
TypeScript
|
import { LoggerType } from './LoggerFactory';
|
||
|
import Logger from './Logger';
|
||
|
declare type LoggerOptions = {
|
||
|
infrastructure?: LoggerType | Logger;
|
||
|
issues?: LoggerType | Logger;
|
||
|
devServer?: boolean;
|
||
|
};
|
||
|
export default LoggerOptions;
|