@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
11 lines (10 loc) • 365 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TimePropertyValue = void 0;
const PropertyValue_1 = require("../PropertyValue");
class TimePropertyValue extends PropertyValue_1.PropertyValue {
isEmpty() {
return this.time == null || this.time.toJSON() == null;
}
}
exports.TimePropertyValue = TimePropertyValue;