UNPKG

@omnia/fx-models

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