Interface RepluggedAnnouncement

interface RepluggedAnnouncement {
    _dismissed?: boolean;
    button?: {
        href?: string;
        onClick?: (() => void);
        text: string;
    };
    color?: string;
    message: ReactNode;
    onClose?: (() => void);
}

Properties

_dismissed?: boolean
button?: {
    href?: string;
    onClick?: (() => void);
    text: string;
}
color?: string
message: ReactNode
onClose?: (() => void)