2020-03-08 16:32:25 +08:00

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;
}