UNPKG

ifc-expressions

Version:

Parsing and evaluation of IFC expressions

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