()
| 315 | } |
| 316 | |
| 317 | async loadConfig(): Promise<ConfigResult<ContinueConfig>> { |
| 318 | await this.isInitialized; |
| 319 | if (!this.currentProfile) { |
| 320 | return { |
| 321 | config: undefined, |
| 322 | errors: undefined, |
| 323 | configLoadInterrupted: true, |
| 324 | }; |
| 325 | } |
| 326 | const config = await this.currentProfile.loadConfig( |
| 327 | this.additionalContextProviders, |
| 328 | ); |
| 329 | return config; |
| 330 | } |
| 331 | |
| 332 | async openConfigProfile( |
| 333 | profileId?: string, |
no outgoing calls
no test coverage detected