Interface AlertComponentOptions

interface AlertComponentOptions {
    visible: boolean;
    message: string;
    type: "success" | "danger";
    duration?: number;
    onHide?: (() => void);
    textColor?: string;
}

Properties

visible: boolean
message: string
type: "success" | "danger"
duration?: number
onHide?: (() => void)
textColor?: string