fix: 修复ts报错

This commit is contained in:
zhangtao07 2023-11-09 10:45:41 +08:00
parent 3e1e8a6189
commit 77a8c56728

View File

@ -304,7 +304,9 @@ export interface RendererInfo extends RendererScaffoldInfo {
sharedContext?: Record<string, any>; sharedContext?: Record<string, any>;
dialogTitle?: string; //弹窗标题用于弹窗大纲的展示 dialogTitle?: string; //弹窗标题用于弹窗大纲的展示
dialogType?: string; //区分确认对话框类型 dialogType?: string; //区分确认对话框类型
getSubEditorVariable: (schema?: any) => Array<{label: string; children: any}>; // 传递给子编辑器的组件自定义变量如listSelect的选项名称和值 getSubEditorVariable?: (
schema?: any
) => Array<{label: string; children: any}>; // 传递给子编辑器的组件自定义变量如listSelect的选项名称和值
} }
export type BasicRendererInfo = Omit< export type BasicRendererInfo = Omit<