choerodon-ui
Version:
An enterprise-class UI design language and React-based implementation
19 lines (18 loc) • 607 B
TypeScript
import { Component, ReactElement } from 'react';
import IDialogPropTypes from './IDialogPropTypes';
declare class DialogWrap extends Component<IDialogPropTypes, any> {
static defaultProps: {
visible: boolean;
};
_component: ReactElement<any>;
renderComponent: (props: any) => void;
removeContainer: () => void;
shouldComponentUpdate({ visible }: {
visible: boolean;
}): boolean;
saveDialog: (node: any) => void;
getComponent: (extra?: {}) => JSX.Element;
getContainer: () => HTMLElement;
render(): JSX.Element | null;
}
export default DialogWrap;