toasty-reactx
Version:
A lightweight, customizable toast notification system for React applications.
10 lines (9 loc) • 523 B
TypeScript
export declare const store: import("@reduxjs/toolkit").EnhancedStore<{
toast: import("./toastInterface").ToastState;
}, import("redux").UnknownAction, import("@reduxjs/toolkit").Tuple<[import("redux").StoreEnhancer<{
dispatch: import("redux-thunk").ThunkDispatch<{
toast: import("./toastInterface").ToastState;
}, undefined, import("redux").UnknownAction>;
}>, import("redux").StoreEnhancer]>>;
export type RootState = ReturnType<typeof store.getState>;
export type AppDispatch = typeof store.dispatch;