import { IPSModelObject } from '../ipsmodel-object'; import { IPSEditor } from './ipseditor'; /** * * 子接口类型识别属性[] * @export * @interface IPSEditorContainer */ export interface IPSEditorContainer extends IPSModelObject { /** * 编辑器对象 * * @type {IPSEditor} */ getPSEditor(): IPSEditor | null; /** * 编辑器对象 * * @type {IPSEditor} */ get psEditor(): IPSEditor | null; /** * 编辑器对象(必须存在) * * @type {IPSEditor} */ getPSEditorMust(): IPSEditor; /** * 值项名称 * @type {string} */ valueItemName: string; } //# sourceMappingURL=ipseditor-container.d.ts.map