@hyahfoufi/ng-snotify
Version:
Angular 2+ alternative notifications center
20 lines (19 loc) • 436 B
TypeScript
/**
* Snotify animation params
* If you want more animations, you can include animate.css or write animations yourself in your styles
* Then you'll need to share this styles with snotify component [ng-snotify] component.
*/
export interface SnotifyAnimate {
/**
* In animation
*/
enter: string;
/**
* Out animation
*/
exit: string;
/**
* Animation time in ms
*/
time: number;
}