1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 23:33:31 +00:00

[PM-18042] Build request response structure (#15163)

* feat: add support for discover command

* feat: make client public to allow RPC

* feat: update SDK
This commit is contained in:
Andreas Coroiu
2025-06-26 14:01:31 +02:00
committed by GitHub
parent 473ab3a1f7
commit 71d4f989b7
6 changed files with 30 additions and 9 deletions

View File

@@ -4,7 +4,7 @@ import { IpcClient, IncomingMessage, OutgoingMessage } from "@bitwarden/sdk-inte
export abstract class IpcService {
private _client?: IpcClient;
protected get client(): IpcClient {
get client(): IpcClient {
if (!this._client) {
throw new Error("IpcService not initialized");
}