import { IPSAppView } from '../../app/view/ipsapp-view'; import { IPSDEGrid } from './ipsdegrid'; /** * * 子接口类型识别属性[] * 继承父接口类型值[MULTIEDITVIEWPANEL] * @export * @interface IPSDEMultiEditViewPanel */ export interface IPSDEMultiEditViewPanel extends IPSDEGrid { /** * 嵌入应用视图 * * @type {IPSAppView} */ getEmbeddedPSAppView(): IPSAppView | null; /** * 嵌入应用视图 * * @type {IPSAppView} */ get embeddedPSAppView(): IPSAppView | null; /** * 嵌入应用视图(必须存在) * * @type {IPSAppView} */ getEmbeddedPSAppViewMust(): IPSAppView; /** * 面板样式 * @type {string} */ panelStyle: string; }