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

13 lines
244 B
TypeScript

export interface RemoteClient {
id: string
username: string
}
export interface ChadClient extends RemoteClient {
isMe: boolean
inputMuted?: boolean
outputMuted?: boolean
}
export type UpdatedClient = Omit<ChadClient, 'id' | 'isMe'>