UNPKG

@omnia/fx-models

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