17 lines
388 B
TypeScript
17 lines
388 B
TypeScript
// - Import react components
|
|
import { firebaseRef, firebaseAuth } from 'app/firebase/'
|
|
|
|
import { SocialError } from 'domain/common'
|
|
import { INotificationService } from 'services/notifications'
|
|
|
|
/**
|
|
* Firbase notification service
|
|
*
|
|
* @export
|
|
* @class NotificationService
|
|
* @implements {INotificationService}
|
|
*/
|
|
export class NotificationService implements INotificationService {
|
|
|
|
|
|
} |