| Current Path : /var/www/homesaver/www/bitrix/js/location/core/src/entity/address/ |
| Current File : /var/www/homesaver/www/bitrix/js/location/core/src/entity/address/addressfield.js |
import Field from "../generic/field";
export default class AddressField extends Field
{
#value;
//todo: Fields validation
constructor(props)
{
super(props);
this.#value = props.value || '';
}
get value()
{
return this.#value;
}
set value(value)
{
this.#value = value;
return this;
}
}