chad/client/shared/types.ts
Никита Круглицкий ec67be8aa6
All checks were successful
Deploy / deploy (push) Successful in 4m32s
куча говна
2025-10-20 00:10:13 +06:00

11 lines
234 B
TypeScript

export interface ChadClient {
socketId: string
userId: string
username: string
displayName: string
inputMuted?: boolean
outputMuted?: boolean
}
export type UpdatedClient = Omit<ChadClient, 'socketId' | 'userId' | 'isMe'>