mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +00:00
18 lines
515 B
TypeScript
18 lines
515 B
TypeScript
import { ConfigBase } from "@/common/utils/ConfigBase";
|
|
import { LogLevel } from "@/common/utils/log";
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-declaration-merging
|
|
export interface NapCatConfig {
|
|
fileLog: boolean,
|
|
consoleLog: boolean,
|
|
fileLogLevel: LogLevel,
|
|
consoleLogLevel: LogLevel,
|
|
}
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-declaration-merging
|
|
export class NapCatConfig extends ConfigBase<NapCatConfig> {
|
|
getConfigName() {
|
|
return 'napcat';
|
|
}
|
|
}
|