UNPKG

@omnia/fx-models

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