UNPKG

bento-auth-js

Version:

Authentication library for web applications of Bento-Platform

12 lines (11 loc) 617 B
declare const authStore: import("@reduxjs/toolkit/dist/configureStore").ToolkitStore<{ auth: import("./authSlice").AuthSliceState; openIdConfiguration: import("./openIdConfigSlice").OIDCSliceState; }, import("redux").AnyAction, [import("@reduxjs/toolkit").ThunkMiddleware<{ auth: import("./authSlice").AuthSliceState; openIdConfiguration: import("./openIdConfigSlice").OIDCSliceState; }, import("redux").AnyAction>]>; export type RootState = ReturnType<typeof authStore.getState>; export type AppDispatch = typeof authStore.dispatch; export declare const useAppDispatch: () => AppDispatch; export {};