Я создал службу уведомлений, используя Noty, но она не анимируется и не отображается правильно. Куда я скучаю ?? Нужно ли добавлять какой-либо скрипт для него?
import { Injectable } from '@angular/core';
declare let require;
const lodash = require('lodash');
const Noty = require('noty');
@Injectable({
providedIn: 'root'
})
export class NotificationServiceService {
constructor() { }
showNotification(text){
new Noty(lodash.assign({
text:text,
type: 'success',
layout: 'topRight',
killer:true,
timeout: 3000,
})).show();
}
}
Это код услуги.