import { BoxedValueTypes } from "./BoxedValueTypes.js"; import { ExprType } from "../type/ExprType.js"; import { ValueType } from "./ValueType.js"; export interface Value>>>> { getValue(): T; equals(other: Value): boolean; toString(): any; getType(): ExprType; }