Type Alias GeneralToastParams

GeneralToastParams: {
    actionLabel?: string;
    closeButton?: boolean;
    description?: string;
    duration?: number;
    position?:
        | "top-left"
        | "top-right"
        | "bottom-left"
        | "bottom-right"
        | "top-center"
        | "bottom-center";
}