@fradev/ng-snotify
Version:
Angular 2+ notifications center
13 lines (12 loc) • 344 B
TypeScript
import { SnotifyToastConfig } from './SnotifyToastConfig.interface';
import { SnotifyGlobalConfig } from './SnotifGlobalConfig.interface';
/**
* Global configuration object
*/
export interface SnotifyDefaults {
global?: SnotifyGlobalConfig;
toast?: SnotifyToastConfig;
type?: {
[key: string]: SnotifyToastConfig;
};
}