(opts: DaemonClientOptions = {})
| 42 | private timeout: number; |
| 43 | |
| 44 | constructor(opts: DaemonClientOptions = {}) { |
| 45 | this.socketPath = opts.socketPath ?? getSocketPath(); |
| 46 | this.timeout = opts.timeout ?? 30000; |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * Send a request to the daemon and wait for a response. |
nothing calls this directly
no test coverage detected