convex
Version:
Client for the Convex Cloud
17 lines (16 loc) • 637 B
JavaScript
;
var __defProp = Object.defineProperty;
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
export class Expression {
/**
* @internal
*/
constructor() {
// Property for nominal type support.
__publicField(this, "_isExpression");
// Property to distinguish expressions by the type they resolve to.
__publicField(this, "_value");
}
}
//# sourceMappingURL=filter_builder.js.map