@anglr/notifications
Version:
Angular module for displaying notifications
14 lines • 628 B
JavaScript
import { InjectionToken } from '@angular/core';
/**
* Token for injecting options for notifications components
*/
export const NOTIFICATIONS_OPTIONS = new InjectionToken('NOTIFICATIONS_OPTIONS');
/**
* Token for injecting options for notification message component
*/
export const NOTIFICATION_MESSAGE_OPTIONS = new InjectionToken('NOTIFICATION_MESSAGE_OPTIONS');
/**
* Token for injecting service that can be used for obtaining type of component for notification message
*/
export const NOTIFICATION_MESSAGE_SERVICE = new InjectionToken('NOTIFICATION_MESSAGE_SERVICE');
//# sourceMappingURL=notifications.interface.js.map