Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/location/core/src/entity/location/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/location/core/src/entity/location/locationfield.js

import Field from '../generic/field';

export default class LocationField extends Field
{
	#value;

	// todo: Fields validation
	constructor(props)
	{
		super(props);
		this.#value = props.value || '';
	}

	get value(): string
	{
		return this.#value;
	}

	set value(value: string)
	{
		this.#value = value;
	}
}