(input?: GetConfigOptions)
| 210 | } |
| 211 | |
| 212 | async getConfig(input?: GetConfigOptions): Promise<KimiConfig> { |
| 213 | const rpc = await this.getRpc(); |
| 214 | return rpc.getKimiConfig(input ?? {}); |
| 215 | } |
| 216 | |
| 217 | async getConfigDiagnostics(): Promise<ConfigDiagnostics> { |
| 218 | const rpc = await this.getRpc(); |
nothing calls this directly
no test coverage detected