UNPKG

ifc-expressions

Version:

Parsing and evaluation of IFC expressions

8 lines (7 loc) 398 B
import { FuncArgRegex } from "./FuncArgRegex.js"; import { StringValue } from "../../../value/StringValue.js"; import { ExprEvalResult } from "../../ExprEvalResult.js"; export declare class FuncArgSimpleRegex extends FuncArgRegex { constructor(required: boolean, name: string, defaultValue?: StringValue); protected toRegexString(patternString: StringValue): ExprEvalResult<StringValue>; }