export interface MxSketchesAndNotesUiConfigMMenuDataListItemListPropsStyle { width: string; [k: string]: any; } export interface MxSketchesAndNotesUiConfigMMenuDataListItemListProps { style: MxSketchesAndNotesUiConfigMMenuDataListItemListPropsStyle; [k: string]: any; } export interface MxSketchesAndNotesUiConfigMMenuDataListItemListListItem { tab: string; icon: string; cmd: string; [k: string]: any; } export interface MxSketchesAndNotesUiConfigMMenuDataListItemListItem { tab: string; icon: string; cmd: string; size?: string; labelWithArrowLayout?: boolean; col?: boolean; isShowLabel?: boolean; isShowToMainPanel?: boolean; props?: MxSketchesAndNotesUiConfigMMenuDataListItemListProps; list?: MxSketchesAndNotesUiConfigMMenuDataListItemListListItem[]; isSeparateMenuArrowIcon?: boolean; isShowToMainPanelRight?: boolean; commandOptions?: string[]; [k: string]: any; } export interface MxSketchesAndNotesUiConfigMMenuDataListItem { tab: string; icon: string; sameWidth: boolean; list: MxSketchesAndNotesUiConfigMMenuDataListItemListItem[]; [k: string]: any; } export interface MxSketchesAndNotesUiConfigMMenuDataItem { tab: string; list: MxSketchesAndNotesUiConfigMMenuDataListItem[]; [k: string]: any; } export interface MxSketchesAndNotesUiConfig { /** * 草图设计模式下是否显示菜单栏,默认不显示 */ isShowMenuBar: boolean; mMenuData: MxSketchesAndNotesUiConfigMMenuDataItem[]; [k: string]: any; }