8 lines
337 B
TypeScript

import { ParticipantPermissions, ParticipantRole } from '../typings/ce';
export interface ParticipantTokenInfo {
token: string; // The generated participant token
role: ParticipantRole; // Role of the participant (e.g., 'moderator', 'speaker')
permissions: ParticipantPermissions; // List of permissions granted to the participant
}