Type Alias ToastBarPayload
ToastBarPayload: {
id: string;
message: string | Error;
position?: "top-start" | "top-end" | "bottom-start" | "bottom-end";
time: number;
title?: string;
type?: "success" | "info" | "error";
}
Type declaration
id: string
message: string | Error
Optional
position?: "top-start" | "top-end" | "bottom-start" | "bottom-end"
time: number
Optional
title?: string
Optional
type?: "success" | "info" | "error"