@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
15 lines (14 loc) • 409 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ImagePropertyValue = void 0;
const PropertyValue_1 = require("../PropertyValue");
class ImagePropertyValue extends PropertyValue_1.PropertyValue {
constructor(image) {
super();
this.image = image;
}
isEmpty() {
return !this.image;
}
}
exports.ImagePropertyValue = ImagePropertyValue;