Your IP : 172.71.120.3


Current Path : /var/www/element/data/www/revenuestory.ru/bitrix/js/location/core/src/common/
Upload File :
Current File : /var/www/element/data/www/revenuestory.ru/bitrix/js/location/core/src/common/controlmode.js

export default class ControlMode
{
	static get edit()
	{
		return 'edit';
	}

	static get view()
	{
		return 'view';
	}

	static isValid(mode: string)
	{
		return mode === ControlMode.edit || mode === ControlMode.view;
	}
}