notification options in configuration

This commit is contained in:
Andrea Chiapparelli - 4Science
2018-03-07 14:55:02 +01:00
parent 580a7f6d55
commit 6397e6fae8
7 changed files with 16 additions and 47 deletions

View File

@@ -0,0 +1,7 @@
import { Config } from './config.interface';
export interface INotificationBoardOptions extends Config {
rtl: boolean;
position: ['top' | 'bottom' | 'middle', 'right' | 'left' | 'center'];
maxStack: number;
}