chad/client/shared/types.ts
Никита Круглицкий ea55b99116
Some checks failed
Deploy / deploy (push) Failing after 7s
#4
2025-10-07 05:39:40 +06:00

12 lines
249 B
TypeScript

import type * as mediasoupClient from 'mediasoup-client'
export interface RemoteClient {
id: string
username: string
}
export interface ChadClient extends RemoteClient {
isMe?: boolean
consumerIds: mediasoupClient.types.Consumer['id'][]
}