@alilc/lowcode-plugin-components-pane
Version:
23 lines (22 loc) • 494 B
TypeScript
import React from 'react';
interface Props {
className?: string;
children?: React.ReactNode;
}
interface State {
active: number;
offset: number;
}
export default class Tab extends React.Component<Props, State> {
static Item: any;
state: State;
menus: any;
componentDidMount(): void;
getIndicatorPos: (index?: number) => number;
format: () => {
menus: any[];
};
handleSelect: (active: any) => void;
render(): JSX.Element;
}
export {};