diff --git a/src/daemon/connection.ts b/src/daemon/connection.ts index c11fb74..8af9cfa 100644 --- a/src/daemon/connection.ts +++ b/src/daemon/connection.ts @@ -340,6 +340,10 @@ export class DaemonConnection { this._apiKey = apiKey; } + get isConnected(): boolean { + return this._transport.isConnected; + } + async createSession( options: DaemonSessionOptions = {} ): Promise {