@replyke/core
Version:
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
17 lines (16 loc) • 1.11 kB
TypeScript
export declare const rootReducer: import("@reduxjs/toolkit").Reducer<{
api: import("@reduxjs/toolkit/query").CombinedState<{}, "AppNotification" | "List" | "User" | "Entity", "api">;
auth: import("./slices/authSlice").AuthState;
appNotifications: import("./slices/appNotificationsSlice").AppNotificationsState;
lists: import("./slices/listsSlice").ListsState;
user: import("./slices/userSlice").UserState;
entityLists: import("./slices/entityListsSlice").EntityListsState;
}, import("@reduxjs/toolkit").UnknownAction, Partial<{
api: import("@reduxjs/toolkit/query").CombinedState<{}, "AppNotification" | "List" | "User" | "Entity", "api"> | undefined;
auth: import("./slices/authSlice").AuthState | undefined;
appNotifications: import("./slices/appNotificationsSlice").AppNotificationsState | undefined;
lists: import("./slices/listsSlice").ListsState | undefined;
user: import("./slices/userSlice").UserState | undefined;
entityLists: import("./slices/entityListsSlice").EntityListsState | undefined;
}>>;
export type RootState = ReturnType<typeof rootReducer>;