UNPKG

ifc-expressions

Version:

Parsing and evaluation of IFC expressions

12 lines (11 loc) 328 B
import { FuncArgBase } from "./FuncArgBase.js"; import { Type } from "../../../type/Types.js"; export class FuncArgAny extends FuncArgBase { constructor(required, name, defaultValue) { super(required, name, defaultValue); } getType() { return Type.ANY; } } //# sourceMappingURL=FuncArgAny.js.map