UNPKG

@amsterdam/bmi-dms-upload

Version:

A document upload flow that can be implemented in any BMI React application. Documents are stored in DMS. Metadata can be added in the flow.

10 lines 531 B
import { IBulkState } from './bulk/bulk/store/model'; import { ISingleState } from './single/single/store/model'; export interface Store { single: ISingleState; bulk: IBulkState; } export type RootState = ReturnType<typeof store.getState>; export type AppDispatch = typeof store.dispatch; export declare const store: import("@reduxjs/toolkit/dist/configureStore").ToolkitStore<any, import("redux").AnyAction, import("@reduxjs/toolkit").ThunkMiddleware<any, import("redux").AnyAction>[]>; //# sourceMappingURL=store.d.ts.map