chad/client/shared/types.ts
Никита Круглицкий 196aa36970
All checks were successful
Deploy / deploy (push) Successful in 43s
front update
2025-10-09 04:42:34 +06:00

11 lines
183 B
TypeScript

export interface RemoteClient {
id: string
username: string
}
export interface ChadClient extends RemoteClient {
isMe: boolean
inputMuted?: boolean
outputMuted?: boolean
}