Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/js/ui/notification-manager/src/notification/
Upload File :
Current File : /var/www/homesaver/www/bitrix/js/ui/notification-manager/src/notification/notification-event.js

import { BaseEvent } from 'main.core.events';

export default class NotificationEvent extends BaseEvent
{
	static CLICK: string = 'click';
	static ACTION: string = 'action';
	static CLOSE: string = 'close';

	static getTypes(): Array<string>
	{
		return [
			NotificationEvent.CLICK,
			NotificationEvent.ACTION,
			NotificationEvent.CLOSE,
		];
	}

	static isSupported(eventType: string): boolean
	{
		return NotificationEvent.getTypes().includes(eventType);
	}
}