This commit is contained in:
2026-04-23 08:51:36 -05:00
parent 44fe4c63c4
commit 6ee7b5ac34
4 changed files with 18 additions and 1 deletions
+1 -1
View File
@@ -5,5 +5,5 @@ export declare class TetherClient {
disconnect: () => void;
subscribe: (queryName: string, params: any, callback: (data: any) => void) => void;
unsubscribe: (query: string) => void;
sendMutation: (mutationName: string, params: any) => void;
sendMutation: (mutationName: string, params: any) => Promise<unknown>;
}