agora-classroom-sdk
Version:
For publishing npm package agora-classroom-sdk (Web & Electron). Get more information from https://docs.agora.io
9 lines (8 loc) • 332 B
TypeScript
/// <reference types="react" />
import './index.css';
import { ScreenShareRoleType } from '@classroom/infra/stores/common/toolbar/type';
export declare const ScreenShareDialog: ({ id, onOK, onCancel, }: {
id: string;
onOK: (roleType: ScreenShareRoleType) => void;
onCancel?: (() => void) | undefined;
}) => JSX.Element;