*Add error property to RPCResponse

This commit is contained in:
Derrick Hammer 2022-08-18 19:17:12 -04:00
parent d7b0c7d4de
commit 152522e579
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 5 deletions

View File

@ -7,9 +7,6 @@ export interface RPCRequest {
export interface RPCResponse {
updated: number;
data:
| any
| {
error: string | boolean;
};
data: any;
error?: string
}