Matthias Nott
2026-03-07 c23dfe16e95713e7058137308bdbc28419609a39
types/index.ts
....@@ -102,6 +102,11 @@
102102 content: string;
103103 }
104104
105
+export interface WsIncomingTyping {
106
+ type: "typing";
107
+ typing: boolean;
108
+}
109
+
105110 export interface WsIncomingError {
106111 type: "error";
107112 message: string;
....@@ -120,5 +125,6 @@
120125 | WsIncomingSessionSwitched
121126 | WsIncomingSessionRenamed
122127 | WsIncomingTranscript
128
+ | WsIncomingTyping
123129 | WsIncomingError
124130 | WsIncomingStatus;