chore: enforce erasable TypeScript syntax

This commit is contained in:
Mario Zechner
2026-05-19 23:15:39 +02:00
parent 48b6510c18
commit 06c6c324d7
17 changed files with 122 additions and 74 deletions

View File

@@ -59,8 +59,11 @@ export class RpcClient {
new Map();
private requestId = 0;
private stderr = "";
private options: RpcClientOptions;
constructor(private options: RpcClientOptions = {}) {}
constructor(options: RpcClientOptions = {}) {
this.options = options;
}
/**
* Start the RPC agent process.