Current Path : /var/www/www-root/data/www/monolith-realty.ru/bitrix/js/location/core/src/entity/generic/ |
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; } }