toastmandu
Version:
Simple toast notification system
12 lines (8 loc) • 301 B
text/typescript
import * as react_jsx_runtime from 'react/jsx-runtime';
declare const ToastContainer: () => react_jsx_runtime.JSX.Element;
declare const toast: {
success: (message: string) => void;
error: (message: string) => void;
info: (message: string) => void;
};
export { ToastContainer, toast };