@lcap/asl
Version:
NetEase Application Specific Language
25 lines (24 loc) • 526 B
TypeScript
import { ExpressionNode, LOGIC_TYPE } from '../LogicItem';
import { CallInterParam } from './CallInterParam';
/**
* 调用逻辑
* @TODO: 当前类目前主要用于生成文档
*/
export declare class CallLogic extends ExpressionNode {
/**
* 逻辑节点类型
*/
readonly type: LOGIC_TYPE;
/**
* Code
*/
readonly calleeCode: string;
/**
* 跳转页面参数
*/
readonly params: Array<CallInterParam>;
/**
* 生成 JS 脚本
*/
toScript(): string;
}