import React from "react"; import { ToastContainer, toast, ToastOptions, UpdateOptions } from "react-toastify"; export type ToastId = React.ReactText; export function info(message: string, options?: ToastOptions) { return toast.info(message, options); } export function success(message: string, options?: ToastOptions) { return toast.success(message, options); } export function warn(message: string, options?: ToastOptions) { return toast.warn(message, options); } export function error(message: string, options?: ToastOptions) { return toast.error(message, Object.assign({ autoClose: false }, options)); } export function update(toastId: ToastId, options: UpdateOptions) { return toast.update(toastId, options); } export function dismiss(toastId: ToastId) { toast.dismiss(toastId); } export const container = ( ); export const INFO = "info"; export const SUCCESS = "success"; export const WARNING = "warning"; export const ERROR = "error"; export type Type = typeof INFO | typeof SUCCESS | typeof WARNING | typeof ERROR; export type ProgressId = ToastId;