chore: make tslint happy

This commit is contained in:
Siyuan Miao 2025-09-04 11:21:52 +02:00
parent 94a388336e
commit 2e1b6f199c
1 changed files with 1 additions and 2 deletions

View File

@ -60,8 +60,7 @@ export class RpcMessage {
throw new Error("Not implemented");
}
// @ts-expect-error: this is a base class, so we don't need to implement it
public static unmarshal(data: Uint8Array): RpcMessage | undefined {
public static unmarshal(_data: Uint8Array): RpcMessage | undefined {
throw new Error("Not implemented");
}
}