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) 537 B
import { TabPaneProps, TabsProps } from 'antd/lib/tabs'; import { FC, PropsWithChildren } from 'react'; import './index.css'; export declare type ATabsProps = Pick<TabsProps, 'className' | 'activeKey' | 'centered' | 'type' | 'onChange' | 'onEdit' | 'onTabClick' | 'animated' | 'moreIcon' | 'renderTabBar' | 'items'>; export declare const ATabs: FC<PropsWithChildren<ATabsProps>>; export declare type ATabPaneProps = Pick<TabPaneProps, 'className' | 'tab' | 'tabKey'>; export declare const ATabPane: FC<PropsWithChildren<ATabPaneProps>>;