Interface AlertComponentOptions

interface AlertComponentOptions {
    visible: boolean;
    message: string;
    type: "success" | "danger";
    duration?: number;
    onHide?: (() => void);
    textColor?: string;
    alertStyle?: Partial<CSSStyleDeclaration>;
    customTemplate?: TemplateRef<any>;
}

Properties

visible: boolean
message: string
type: "success" | "danger"
duration?: number
onHide?: (() => void)
textColor?: string
alertStyle?: Partial<CSSStyleDeclaration>
customTemplate?: TemplateRef<any>