mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-27 14:10:32 +00:00
12 lines
367 B
TypeScript
12 lines
367 B
TypeScript
import { PureComponent } from 'react';
|
|
import './index.scss';
|
|
export default class TopArea extends PureComponent {
|
|
static displayName: string;
|
|
constructor(props: any);
|
|
componentDidMount(): void;
|
|
componentWillUnmount(): void;
|
|
handlePluginStatusChange: () => void;
|
|
renderPluginList: (list?: any[]) => JSX.Element[];
|
|
render(): JSX.Element;
|
|
}
|