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/push-notification.js

import { Type } from 'main.core';

import Notification from './notification';

export default class PushNotification extends Notification
{
	setUid(id: string): void
	{
		if (!Type.isStringFilled(id))
		{
			throw new Error(`NotificationManager: Cannot create a notification without an ID`);
		}

		this.uid = id;
	}
}