mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 08:58:26 -04:00
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;
|