@alibsp/elevator
Version:
20 lines (19 loc) • 414 B
TypeScript
/// <reference types="react" />
import "./index.scss";
interface Item {
title: any;
id: string;
}
interface ElevatorProps {
className?: any;
activeKey?: string;
dataSource: Item[];
offset?: any;
container?: any;
children?: any;
useAbsolute?: boolean;
hasMargin?: boolean;
tabProps?: any;
}
export default function Elevator(props: ElevatorProps): JSX.Element;
export {};