chore: suppress type merging error

This commit is contained in:
Wesley F. Young
2024-08-12 00:09:05 +08:00
parent 4a531ccea1
commit 814973af58

View File

@@ -1,5 +1,6 @@
import { ConfigBase } from '@/common/utils/ConfigBase'; import { ConfigBase } from '@/common/utils/ConfigBase';
// eslint-disable-next-line @typescript-eslint/no-unsafe-declaration-merging
export interface OB11Config { export interface OB11Config {
http: { http: {
enable: boolean; enable: boolean;
@@ -33,9 +34,9 @@ export interface OB11Config {
}; };
} }
// eslint-disable-next-line @typescript-eslint/no-unsafe-declaration-merging
export class OB11Config extends ConfigBase<OB11Config> { export class OB11Config extends ConfigBase<OB11Config> {
getConfigName() { getConfigName() {
return 'onebot11'; return 'onebot11';
} }
} }