UNPKG

@omnia/fx-models

Version:
15 lines (14 loc) 434 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TextPropertyValue = void 0; const PropertyValue_1 = require("../PropertyValue"); class TextPropertyValue extends PropertyValue_1.PropertyValue { constructor(text) { super(); this.text = text; } isEmpty() { return this.text == null || this.text.trim() == ""; } } exports.TextPropertyValue = TextPropertyValue;