@lcap/asl
Version:
NetEase Application Specific Language
28 lines (27 loc) • 521 B
TypeScript
import { ExpressionNode, LOGIC_TYPE } from '../LogicItem';
/**
* 实体操作
* @TODO: 当前类目前主要用于生成文档
*/
export declare class DBQuery extends ExpressionNode {
/**
* 逻辑节点类型
*/
readonly type: LOGIC_TYPE;
/**
* 实体
*/
readonly entity: string;
/**
* 实体
*/
readonly method: string;
/**
* 参数
*/
readonly arguments: Array<ExpressionNode>;
/**
* 生成 JS 脚本
*/
toScript(): string;
}