@lcap/asl
Version:
NetEase Application Specific Language
21 lines (20 loc) • 534 B
TypeScript
/**
* 生成调用组件的逻辑
* @param componentName 组件名称
* @param componentMethod 组件方法
* @param params 输入的参数
*/
export declare function genCallComponentLogic(componentName: string, componentMethod: string, params?: Array<string>): {
level: string;
type: string;
label: string;
callee: string;
calleeCode: string;
params: {
level: string;
type: string;
callInterParamValue: any;
name: string;
}[];
};
export default genCallComponentLogic;