mirror of
https://github.com/idrainformatica/PecFlow.git
synced 2026-06-17 05:05:44 +02:00
22 lines
434 B
TypeScript
22 lines
434 B
TypeScript
import { toast } from '../core/toast';
|
|
|
|
export type {
|
|
DefaultToastOptions,
|
|
IconTheme,
|
|
Renderable,
|
|
Toast,
|
|
ToasterProps,
|
|
ToastOptions,
|
|
ToastPosition,
|
|
ToastType,
|
|
ValueFunction,
|
|
ValueOrFunction,
|
|
} from '../core/types';
|
|
|
|
export { resolveValue } from '../core/types';
|
|
export { useToaster } from '../core/use-toaster';
|
|
export { useStore as useToasterStore } from '../core/store';
|
|
|
|
export { toast };
|
|
export default toast;
|