import { ConfigBase } from '@/common/config-base'; import napCatDefaultConfig from '@/core/external/napcat.json'; import { NapCatCore } from '@/core'; export type NapCatConfig = typeof napCatDefaultConfig; export class NapCatConfigLoader extends ConfigBase { constructor(core: NapCatCore, configPath: string) { super('napcat', core, configPath); } }