UNPKG

agora-classroom-sdk

Version:

For publishing npm package agora-classroom-sdk (Web & Electron). Get more information from https://docs.agora.io

19 lines (18 loc) 497 B
import React, { FC } from 'react'; declare type UserPanelProps = { groupUuid?: string; users: { userUuid: string; userName: string; groupUuid: string | undefined; }[]; limitCount: number; onOpen?: () => void; onClose?: (users: string[]) => void; onChange?: (users: string[]) => void; onError?: (message: string) => void; panelId?: string; children?: React.ReactNode; }; export declare const UserPanel: FC<UserPanelProps>; export {};