UNPKG

@omnia/fx-models

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