UNPKG

agora-classroom-sdk

Version:

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

8 lines (7 loc) 253 B
import { FC, PropsWithChildren } from 'react'; export interface ToolCabinetProps { label: string; visible: boolean; onVisibilityChange: (visible: boolean) => void; } export declare const ToolCabinet: FC<PropsWithChildren<ToolCabinetProps>>;