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