projects/rebirth-ng/src/lib/notify/notify.model.ts
Properties |
html |
html:
|
Type : string
|
Optional |
template |
template:
|
Type : TemplateRef<any>
|
Optional |
type |
type:
|
Type : "success" | "info" | "warning" | "danger"
|
import { TemplateRef } from '@angular/core';
export interface NotifyModel {
type: 'success' | 'info' | 'warning' | 'danger';
html?: string;
template?: TemplateRef<any>;
}