Interface MediaAlert

interface MediaAlert {
    id: number;
    message: string;
    type: "success" | "danger";
}

Properties

Properties

id: number
message: string
type: "success" | "danger"