@lcap/asl
Version:
NetEase Application Specific Language
28 lines (27 loc) • 548 B
TypeScript
import { ExpressionNode, LOGIC_TYPE } from '../LogicItem';
/**
* 内置函数参数
* @TODO: 当前类目前主要用于生成文档
*/
export declare class BuiltInFuncParam extends ExpressionNode {
/**
* 逻辑节点类型
*/
readonly type: LOGIC_TYPE;
/**
* 参数名
*/
readonly name: string;
/**
* 参数类型
*/
readonly schema: any;
/**
* 参数值
*/
readonly builtInFuncParamValue: ExpressionNode;
/**
* 生成 JS 脚本
*/
toScript(): string;
}