UNPKG

ifc-expressions

Version:

Parsing and evaluation of IFC expressions

8 lines (7 loc) 351 B
import { FuncArgBase } from "./FuncArgBase.js"; import { ExpressionValue } from "../../../value/ExpressionValue.js"; import { ExprType } from "../../../type/ExprType.js"; export declare class FuncArgAny extends FuncArgBase<ExpressionValue> { constructor(required: boolean, name: string, defaultValue?: ExpressionValue); getType(): ExprType; }