UNPKG

ifc-expressions

Version:

Parsing and evaluation of IFC expressions

12 lines (11 loc) 569 B
import { IfcExpressionContext } from "../../context/IfcExpressionContext.js"; import { StringValue } from "../../value/StringValue.js"; import { LiteralExpr } from "../LiteralExpr.js"; import { ExprType } from "../../type/ExprType.js"; import { ExprStringBuilder } from "../ExprStringBuilder.js"; export declare class StringLiteralExpr extends LiteralExpr<StringValue, StringValue> { constructor(value: string); calculateResult(ctx: IfcExpressionContext): StringValue; protected buildExprString(builder: ExprStringBuilder): void; getType(): ExprType; }