agora-classroom-sdk
Version:
For publishing npm package agora-classroom-sdk (Web & Electron). Get more information from https://docs.agora.io
15 lines (14 loc) • 539 B
TypeScript
import { FC, PropsWithChildren } from 'react';
import { BaseProps } from '../util/type';
import './index.css';
export { Pens } from './pens';
export { ToolCabinet } from './tool-cabinet';
export { BoardCleaners } from './board-cleaners';
export { Slice } from './slice';
export { Tool } from './tool';
export type { ToolProps } from './tool';
export interface ToolbarProps extends BaseProps {
defaultOpened?: boolean;
onOpenedChange?: (opened: boolean) => void;
}
export declare const Toolbar: FC<PropsWithChildren<ToolbarProps>>;