import { IEditorBasic } from './i-editor-basic'; import { EditorType } from '../../../constants'; /** * 下拉选择编辑器 * * @author zhanghanrui * @date 2024-04-02 11:04:43 * @export * @interface ISelectEditor * @extends {IEditorBasic} */ export interface ISelectEditor extends IEditorBasic { readonly type: EditorType.SELECT; }