@alilc/lowcode-plugin-components-pane
Version:
24 lines (23 loc) • 564 B
TypeScript
import React from 'react';
interface Props {
name: string;
children?: React.ReactElement;
}
interface State {
expand: boolean;
}
export default class Category extends React.Component<Props, State> {
state: {
expand: boolean;
};
height: number;
handleToggle: () => void;
beforeEnter: (node: any) => void;
onEnter: (node: any) => void;
afterEnter: (node: any) => void;
beforeLeave: (node: any) => void;
onLeave: (node: any) => void;
afterLeave: (node: any) => void;
render(): JSX.Element;
}
export {};