UNPKG

epic-designer

Version:

基于vue3的设计器,可视化开发页面表单

14 lines (13 loc) 674 B
import { ActivitybarModel, RightSidebarModel, ViewsContainersModel } from '../../../types/src/index'; export type Attr = 'id' | 'title'; export declare function usePanel(): { activityBars: import('vue').ComputedRef<ActivitybarModel[]>; hideActivitybar: (value: string) => void; hideRightSidebar: (value: string) => void; registerActivitybar: (activitybar: ActivitybarModel) => void; registerRightSidebar: (rightSidebar: RightSidebarModel) => void; rightSidebars: import('vue').ComputedRef<RightSidebarModel[]>; showActivitybar: (value: string) => void; showRightSidebar: (value: string) => void; viewsContainers: ViewsContainersModel; };