main.d.ts 225 Bytes
// 应用参数
export type MainAppProps = {
  container?: HTMLElement;
  // 隐藏侧边栏(菜单)
  hideSider?: boolean;
  // 隐藏顶部
  hideHeader?: boolean;
  // 隐藏 多Tab 切换
  hideMultiTabs?: boolean;
}