UNPKG

@100mslive/hms-video-store

Version:

@100mslive Core SDK which abstracts the complexities of webRTC while providing a reactive store for data management with a unidirectional data flow

13 lines (11 loc) 284 B
import { HMSRole } from './role'; import { HMSPeer } from '../sdk/models/peer'; /** * This interface represents the role change request that is * sent to the users of the SDK. */ export interface HMSRoleChangeRequest { requestedBy?: HMSPeer; role: HMSRole; token: string; }