@lcap/asl
Version:
NetEase Application Specific Language
20 lines (19 loc) • 411 B
TypeScript
import { ExpressionNode, LOGIC_TYPE } from '../LogicItem';
/**
* 弹出消息
* @TODO: 当前类目前主要用于生成文档
*/
export declare class CallMessageShow extends ExpressionNode {
/**
* 逻辑节点类型
*/
readonly type: LOGIC_TYPE;
/**
* 参数
*/
readonly arguments: Array<ExpressionNode>;
/**
* 生成 JS 脚本
*/
toScript(): string;
}