UNPKG

@omnia/fx-models

Version:
15 lines (14 loc) 467 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MultilineTextPropertyValue = void 0; const PropertyValue_1 = require("../PropertyValue"); class MultilineTextPropertyValue extends PropertyValue_1.PropertyValue { constructor(texts) { super(); this.texts = texts; } isEmpty() { return !this.texts || this.texts.length == 0; } } exports.MultilineTextPropertyValue = MultilineTextPropertyValue;