UNPKG

ifc-expressions

Version:

Parsing and evaluation of IFC expressions

12 lines (11 loc) 433 B
import { ExprType } from "../type/ExprType.js"; import { Value } from "./Value.js"; export declare class ContextObjectValue implements Value<Record<string, unknown>> { private readonly contextObjectValue; private readonly type; constructor(value: Record<string, unknown>, type: ExprType); getValue(): Record<string, unknown>; equals(other: Value<any>): boolean; toString(): string; getType(): ExprType; }