インターフェイス: Services
サービス名からインスタンスへの型マップ。this.services.<名前> の型は
このインターフェースで決まります。サービスを定義したら、同じファイルで
宣言マージしてください:
export class ConfigService extends Service { ... }
declare module "@cc-discord-framework/core" {
interface Services {
config: ConfigService;
}
}