@hyahfoufi/ng-snotify
Version:
Angular 2+ alternative notifications center
15 lines (14 loc) • 352 B
TypeScript
import { SnotifyTypeType } from '../types/snotify-type.type';
/**
* Toast styles
*/
export interface SnotifyStyles {
simple: SnotifyTypeType;
success: SnotifyTypeType;
error: SnotifyTypeType;
warning: SnotifyTypeType;
info: SnotifyTypeType;
async: SnotifyTypeType;
confirm: SnotifyTypeType;
prompt: SnotifyTypeType;
}