UNPKG

@szzbmy/lowcode-cli

Version:

🐇 lowcode-cli is an efficient cli tool for Rabbitpre plugin component secondary development. ❤️

17 lines (16 loc) 658 B
import { ComponentlibInfo, ComponentInfo } from '../commands/create/typings'; /** 获取组件列表 */ export declare function getCmpList(): Promise<ComponentInfo[]>; /** 获取组件库列表 */ export declare function getCmplibList(): Promise<ComponentlibInfo[]>; /** 获取组件(库)模版列表 */ export declare function fetchTemplateList(query: { objectType: 'CMP' | 'CMPLIB'; }): Promise<any>; /** 下载组件(库)模版 */ export declare function fetchTemplate(query: { objectName: string; objectType: 'CMP' | 'CMPLIB'; }): Promise<any>; /** 获取项目模板列表 */ export declare function getTemplateList(): Promise<any>;