fix: attr name in IPublicTypePanelDockConfig should not be optional

This commit is contained in:
LeoYuan 袁力皓 2023-05-04 17:02:17 +08:00
parent bb8e2d7b72
commit 066fcf022d

View File

@ -25,7 +25,7 @@ export interface IPublicTypePanelDockConfig extends IPublicTypeWidgetBaseConfig
props?: IPublicTypePanelDockProps;
/** 面板 name, 当没有 props.title 时, 会使用 name 作为标题 */
name?: string;
name: string;
}
export interface IPublicTypePanelDockProps {