Your IP : 18.219.192.133


Current Path : /var/www/www-root/data/www/monolith-realty.ru/bitrix/js/location/core/src/entity/generic/
Upload File :
Current File : /var/www/www-root/data/www/monolith-realty.ru/bitrix/js/location/core/src/entity/generic/field.js

export default class Field
{
	#type;

	constructor(props)
	{
		if(typeof props.type === 'undefined')
		{
			throw new Error('Field type must be defined');
		}

		this.#type = parseInt(props.type);
	}

	get type()
	{
		return this.#type;
	}
}