Your IP : 108.162.241.184


Current Path : /var/www/element/data/www/revenuestory.ru/bitrix/js/location/core/src/entity/generic/
Upload File :
Current File : /var/www/element/data/www/revenuestory.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;
	}
}