mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 07:23:03 +00:00
12 lines
409 B
TypeScript
12 lines
409 B
TypeScript
import { Config } from './config.interface';
|
|
import { NotificationAnimationsType } from '../app/shared/notifications/models/notification-animations-type';
|
|
|
|
export interface INotificationBoardOptions extends Config {
|
|
rtl: boolean;
|
|
position: ['top' | 'bottom' | 'middle', 'right' | 'left' | 'center'];
|
|
maxStack: number;
|
|
timeOut: number;
|
|
clickToClose: boolean;
|
|
animate: NotificationAnimationsType;
|
|
}
|