client volumes

This commit is contained in:
2026-01-29 21:59:41 +06:00
parent aeaea47609
commit fbdceb2e55
5 changed files with 27 additions and 3 deletions

View File

@@ -8,3 +8,8 @@ export interface ChadClient {
}
export type UpdatedClient = Omit<ChadClient, 'socketId' | 'userId' | 'isMe'>
export interface SpeakingClient {
clientId: ChadClient['socketId']
volume: number
}