2020-03-26 21:24:30 +08:00

24 lines
782 B
TypeScript

import React, { PureComponent } from 'react';
import Editor from '@ali/lowcode-editor-core';
import './index.scss';
export interface RightAreaProps {
editor: Editor;
}
export interface RightAreaState {
activeKey: string;
}
export default class RightArea extends PureComponent<RightAreaProps, RightAreaState> {
static displayName: string;
private editor;
private areaManager;
constructor(props: any);
componentDidMount(): void;
componentWillUnmount(): void;
handleSkeletonUpdate: () => void;
handlePluginChange: (key: string, isinit?: boolean) => void;
renderTabTitle: (config: any) => any;
renderTabPanels: (list: any[], height: string) => any;
renderPanels: (list: any[], height: string) => any;
render(): React.ReactNode;
}