UNPKG

ifc-expressions

Version:

Parsing and evaluation of IFC expressions

9 lines (8 loc) 273 B
export interface ExprType { getName(): string; isSuperTypeOf(other: ExprType): boolean; isSameTypeAs(other: ExprType): boolean; isSubTypeOf(other: ExprType): boolean; overlapsWith(other: ExprType): boolean; isAssignableFrom(other: ExprType): any; }