small update

This commit is contained in:
2026-04-21 22:49:23 -05:00
parent 5202a7f844
commit ff47621180
3 changed files with 11 additions and 9 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ export declare class TetherClient {
private subscribedQueries;
connect: (url: string) => void;
disconnect: () => void;
subscribe: (query: string, callback: (data: any) => void) => void;
subscribe: (queryName: string, params: any, callback: (data: any) => void) => void;
unsubscribe: (query: string) => void;
sendMutation: (mutationName: string, params: any) => void;
}