Fix type of RFAMessages with non-String results

This commit is contained in:
Zoë Hoekstra
2022-08-25 23:34:29 +02:00
parent 2463fc2012
commit ceb4a05289
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1,13 +1,13 @@
export class RFAMessage {
jsonrpc = "2.0"; // Transmits version of JSON-RPC. Compliance maybe allows some funky interaction with external tools?
public method?: string; // Is defined when it's a request/notification, otherwise undefined
public result?: string | number; // Is defined when it's a response, otherwise undefined
public result?: string | Array<string> | number; // Is defined when it's a response, otherwise undefined
public params?: FileMetadata; // Optional parameters to method
public error?: string; // Only defined on error
public id?: number; // ID to keep track of request -> response interaction, undefined with notifications, defined with request/response
constructor(
obj: { method?: string; result?: string | number; params?: FileMetadata; error?: string; id?: number } = {},
obj: { method?: string; result?: string | Array<string> | number; params?: FileMetadata; error?: string; id?: number } = {},
) {
this.method = obj.method;
this.result = obj.result;