11 lines
234 B
TypeScript
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'>
|