import { ExpressionNode, LOGIC_TYPE } from '../LogicItem'; /** * 注释 * @TODO: 当前类目前主要用于生成文档 */ export declare class Comment extends ExpressionNode { /** * 逻辑节点类型 */ readonly type: LOGIC_TYPE; /** * 注释内容 */ readonly value: string; /** * 生成 JS 脚本 */ toScript(): string; }