()
| 59 | private readonly ready: Promise<RPCMethods<KimiConfigCoreRpc>>; |
| 60 | |
| 61 | constructor() { |
| 62 | const [coreRpc, clientRpc] = createRPC<KimiConfigCoreRpc, KimiConfigClientRpc>(); |
| 63 | void coreRpc(new KimiConfigCoreRpcImpl()); |
| 64 | this.ready = clientRpc({}); |
| 65 | } |
| 66 | |
| 67 | async resolveConfigPath(input: ResolveKimiConfigPathInput = {}): Promise<string> { |
| 68 | const rpc = await this.ready; |
nothing calls this directly
no test coverage detected