agora-meeting-sdk
Version:
For publishing npm package agora-metting-sdk (Web). Get more information from https://docs.agora.io
13 lines (12 loc) • 461 B
TypeScript
import { FC } from 'react';
import './index.css';
import { TabsProps as RcTabsProps } from 'rc-tabs';
export declare type TabsType = 'line' | 'card' | 'editable-card';
export type { TabPaneProps } from 'rc-tabs';
export { TabPane } from 'rc-tabs';
export interface TabsProps extends Omit<RcTabsProps, 'editable'> {
type?: TabsType;
centered?: boolean;
onEdit?: (e: any, action: 'add' | 'remove') => void;
}
export declare const Tabs: FC<TabsProps>;