@wufengteam/baguaeditor
Version:
低零融合编辑器封装
48 lines (47 loc) • 1.01 kB
TypeScript
/**
* 编辑器左侧组件资产列表
*/
export interface CompListItem {
/**
* 分组id
*/
id: number;
/**
* 分组名称
*/
title: string;
/**
* 分组排序
*/
sort: number;
/**
* 组件列表集合
*/
children: {
/**
* 显示给用户的组件名称
*/
label: string;
/**
* 组件类型,唯一标识,类型重复无法注册
*/
compName: string;
/**
* 远程组件关联平台 pc:PC端组件,'pc,app':融合组件
*/
busiCompType?: 'pc' | 'pc,app' | 'app';
/**
* 远程组件构建产物链接
*/
filePathInServer?: string;
/**
* 远程组件icon链接
*/
imageUrl?: string;
compTypes?: any;
}[];
}
/**
* 编辑器左侧组件资产列表
*/
export declare const InnerCompList: CompListItem[];