do all the boring ts stuff to make this actually work

This commit is contained in:
2026-04-08 15:04:41 -05:00
parent 2a9ef16425
commit 242fb37a67
7 changed files with 113 additions and 3 deletions
+9
View File
@@ -0,0 +1,9 @@
export declare class TetherClient {
private ws;
private subscribedQueries;
connect: (url: string) => void;
disconnect: () => void;
subscribe: (query: string, callback: (data: any) => void) => void;
unsubscribe: (query: string) => void;
sendMutation: (mutationName: string, params: any) => void;
}