mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-08 19:34:56 +02: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;
|