mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-02 01:08:13 +00:00
18 lines
526 B
TypeScript
18 lines
526 B
TypeScript
import React, { PureComponent } from 'react';
|
|
import Editor from '@ali/lowcode-editor-core';
|
|
import './index.scss';
|
|
export interface TopAreaProps {
|
|
editor: Editor;
|
|
}
|
|
export default class TopArea extends PureComponent<TopAreaProps> {
|
|
static displayName: string;
|
|
private areaManager;
|
|
private editor;
|
|
constructor(props: any);
|
|
componentDidMount(): void;
|
|
componentWillUnmount(): void;
|
|
handleSkeletonUpdate: () => void;
|
|
renderPluginList: (list?: any[]) => any[];
|
|
render(): React.ReactNode;
|
|
}
|