Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/location/install/js/location/core/src/entity/generic/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/location/install/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;
	}
}