UNPKG

ifc-expressions

Version:

Parsing and evaluation of IFC expressions

12 lines (11 loc) 706 B
import { ExprEvalResult, ExprEvalSuccess } from "../../ExprEvalResult.js"; import { FunctionExpr } from "../FunctionExpr.js"; import { ExpressionValue } from "../../../value/ExpressionValue.js"; import { ExprType } from "../../../type/ExprType.js"; import { IfcDateTimeValue } from "../../../value/IfcDateTimeValue.js"; import { FuncArgBase } from "./FuncArgBase.js"; export declare class FuncArgIfcDateTime extends FuncArgBase<IfcDateTimeValue> { constructor(required: boolean, name: string, defaultValue?: IfcDateTimeValue); getType(): ExprType; protected transformForTypeCheck(callingExpr: FunctionExpr, invocationValue: ExprEvalSuccess<ExpressionValue>): ExprEvalResult<ExpressionValue>; }