メインコンテンツまでスキップ
バージョン: v2 Next 🚧

インターフェイス: Services

定義: src/service/Service.ts:19

サービス名からインスタンスへの型マップ。this.services.<名前> の型は このインターフェースで決まります。サービスを定義したら、同じファイルで 宣言マージしてください:

export class ConfigService extends Service { ... }

declare module "@cc-discord-framework/core" {
interface Services {
config: ConfigService;
}
}