@opengeoweb/store 12.1.2 → 12.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/index.esm.js +73 -58
  2. package/package.json +8 -8
  3. package/src/store/drawingTool/listener.d.ts +1 -1
  4. package/src/store/drawingTool/reducer.d.ts +2 -2
  5. package/src/store/drawingTool/selectors.d.ts +329 -25
  6. package/src/store/generic/listener.d.ts +1 -1
  7. package/src/store/generic/loadingIndicator/reducer.d.ts +10 -10
  8. package/src/store/generic/loadingIndicator/selectors.d.ts +252 -13
  9. package/src/store/generic/loadingIndicator/types.d.ts +1 -1
  10. package/src/store/generic/selectors.d.ts +309 -49
  11. package/src/store/generic/syncGroups/listener.d.ts +1 -1
  12. package/src/store/generic/syncGroups/reducer.d.ts +1 -1
  13. package/src/store/generic/syncGroups/selector.d.ts +19 -3
  14. package/src/store/generic/syncGroups/selectors.d.ts +241 -35
  15. package/src/store/map/layer/listeners.d.ts +1 -1
  16. package/src/store/map/layer/reducer.d.ts +1 -1
  17. package/src/store/map/layer/selectors.d.ts +1875 -145
  18. package/src/store/map/map/listener.d.ts +2 -2
  19. package/src/store/map/map/metronomeListener.d.ts +1 -1
  20. package/src/store/map/map/reducer.d.ts +1 -1
  21. package/src/store/map/map/selectors.d.ts +4166 -192
  22. package/src/store/map/service/listener.d.ts +4 -4
  23. package/src/store/map/service/selectors.d.ts +234 -18
  24. package/src/store/mapStore/openlayers/listener.d.ts +1 -1
  25. package/src/store/router/listener.d.ts +1 -1
  26. package/src/store/store.d.ts +5 -11
  27. package/src/store/ui/reducer.d.ts +1 -1
  28. package/src/store/ui/selectors.d.ts +191 -31
  29. package/src/store/ui/types.d.ts +3 -1
  30. package/src/store/unifyReducerMaps.d.ts +1 -1
@@ -1,43 +1,347 @@
1
1
  import type { DrawingToolState, DrawtoolModuleStore } from './reducer';
2
2
  export declare const getDrawingtoolStore: (store: DrawtoolModuleStore) => DrawingToolState;
3
- export declare const selectDrawToolById: (state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => import("./reducer").DrawToolItem | undefined, selectAllDrawingTools: (state: DrawtoolModuleStore) => import("./reducer").DrawToolItem[];
4
- export declare const getActiveDrawToolId: ((state: DrawtoolModuleStore) => string) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem[]) => string, {
5
- clearCache: () => void;
6
- }> & {
3
+ export declare const selectDrawToolById: (state: DrawtoolModuleStore, id: string) => {
4
+ drawToolId: string;
5
+ geoJSONLayerId: string;
6
+ activeDrawModeId: string;
7
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
8
+ shouldAllowMultipleShapes: boolean;
9
+ geoJSONIntersectionLayerId?: string | undefined;
10
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
11
+ }, selectAllDrawingTools: (state: DrawtoolModuleStore) => import("./reducer").DrawToolItem[];
12
+ export declare const getActiveDrawToolId: ((state: DrawtoolModuleStore) => string) & {
7
13
  clearCache: () => void;
14
+ resultsCount: () => number;
15
+ resetResultsCount: () => void;
16
+ } & {
17
+ resultFunc: (resultFuncArgs_0: import("./reducer").DrawToolItem[]) => string;
18
+ memoizedResultFunc: ((resultFuncArgs_0: import("./reducer").DrawToolItem[]) => string) & {
19
+ clearCache: () => void;
20
+ resultsCount: () => number;
21
+ resetResultsCount: () => void;
22
+ };
23
+ lastResult: () => string;
24
+ dependencies: [(state: DrawtoolModuleStore) => import("./reducer").DrawToolItem[]];
25
+ recomputations: () => number;
26
+ resetRecomputations: () => void;
27
+ dependencyRecomputations: () => number;
28
+ resetDependencyRecomputations: () => void;
29
+ } & {
30
+ argsMemoize: typeof import("reselect").weakMapMemoize;
31
+ memoize: typeof import("reselect").weakMapMemoize;
8
32
  };
9
- export declare const getDrawModeById: ((state: DrawtoolModuleStore, _drawToolId: string, drawModeId: string) => import("dist/libs/webmap-react/src").DrawMode | undefined) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined, args_1: string) => import("dist/libs/webmap-react/src").DrawMode | undefined, {
10
- clearCache: () => void;
11
- }> & {
33
+ export declare const getDrawModeById: ((state: DrawtoolModuleStore, _drawToolId: string, drawModeId: string) => import("dist/libs/webmap-react/src").DrawMode | undefined) & {
12
34
  clearCache: () => void;
35
+ resultsCount: () => number;
36
+ resetResultsCount: () => void;
37
+ } & {
38
+ resultFunc: (resultFuncArgs_0: {
39
+ drawToolId: string;
40
+ geoJSONLayerId: string;
41
+ activeDrawModeId: string;
42
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
43
+ shouldAllowMultipleShapes: boolean;
44
+ geoJSONIntersectionLayerId?: string | undefined;
45
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
46
+ }, resultFuncArgs_1: string) => import("dist/libs/webmap-react/src").DrawMode | undefined;
47
+ memoizedResultFunc: ((resultFuncArgs_0: {
48
+ drawToolId: string;
49
+ geoJSONLayerId: string;
50
+ activeDrawModeId: string;
51
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
52
+ shouldAllowMultipleShapes: boolean;
53
+ geoJSONIntersectionLayerId?: string | undefined;
54
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
55
+ }, resultFuncArgs_1: string) => import("dist/libs/webmap-react/src").DrawMode | undefined) & {
56
+ clearCache: () => void;
57
+ resultsCount: () => number;
58
+ resetResultsCount: () => void;
59
+ };
60
+ lastResult: () => import("dist/libs/webmap-react/src").DrawMode | undefined;
61
+ dependencies: [(state: DrawtoolModuleStore, id: string) => {
62
+ drawToolId: string;
63
+ geoJSONLayerId: string;
64
+ activeDrawModeId: string;
65
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
66
+ shouldAllowMultipleShapes: boolean;
67
+ geoJSONIntersectionLayerId?: string | undefined;
68
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
69
+ }, (_store: DrawtoolModuleStore, _drawToolId: string, drawModeId: string) => string];
70
+ recomputations: () => number;
71
+ resetRecomputations: () => void;
72
+ dependencyRecomputations: () => number;
73
+ resetDependencyRecomputations: () => void;
74
+ } & {
75
+ argsMemoize: typeof import("reselect").weakMapMemoize;
76
+ memoize: typeof import("reselect").weakMapMemoize;
13
77
  };
14
- export declare const getActiveDrawModeId: ((state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => string) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined) => string, {
15
- clearCache: () => void;
16
- }> & {
78
+ export declare const getActiveDrawModeId: ((state: DrawtoolModuleStore, id: string) => string) & {
17
79
  clearCache: () => void;
80
+ resultsCount: () => number;
81
+ resetResultsCount: () => void;
82
+ } & {
83
+ resultFunc: (resultFuncArgs_0: {
84
+ drawToolId: string;
85
+ geoJSONLayerId: string;
86
+ activeDrawModeId: string;
87
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
88
+ shouldAllowMultipleShapes: boolean;
89
+ geoJSONIntersectionLayerId?: string | undefined;
90
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
91
+ }) => string;
92
+ memoizedResultFunc: ((resultFuncArgs_0: {
93
+ drawToolId: string;
94
+ geoJSONLayerId: string;
95
+ activeDrawModeId: string;
96
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
97
+ shouldAllowMultipleShapes: boolean;
98
+ geoJSONIntersectionLayerId?: string | undefined;
99
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
100
+ }) => string) & {
101
+ clearCache: () => void;
102
+ resultsCount: () => number;
103
+ resetResultsCount: () => void;
104
+ };
105
+ lastResult: () => string;
106
+ dependencies: [(state: DrawtoolModuleStore, id: string) => {
107
+ drawToolId: string;
108
+ geoJSONLayerId: string;
109
+ activeDrawModeId: string;
110
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
111
+ shouldAllowMultipleShapes: boolean;
112
+ geoJSONIntersectionLayerId?: string | undefined;
113
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
114
+ }];
115
+ recomputations: () => number;
116
+ resetRecomputations: () => void;
117
+ dependencyRecomputations: () => number;
118
+ resetDependencyRecomputations: () => void;
119
+ } & {
120
+ argsMemoize: typeof import("reselect").weakMapMemoize;
121
+ memoize: typeof import("reselect").weakMapMemoize;
18
122
  };
19
- export declare const getDrawToolGeoJSONLayerId: ((state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => string) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined) => string, {
20
- clearCache: () => void;
21
- }> & {
123
+ export declare const getDrawToolGeoJSONLayerId: ((state: DrawtoolModuleStore, id: string) => string) & {
22
124
  clearCache: () => void;
125
+ resultsCount: () => number;
126
+ resetResultsCount: () => void;
127
+ } & {
128
+ resultFunc: (resultFuncArgs_0: {
129
+ drawToolId: string;
130
+ geoJSONLayerId: string;
131
+ activeDrawModeId: string;
132
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
133
+ shouldAllowMultipleShapes: boolean;
134
+ geoJSONIntersectionLayerId?: string | undefined;
135
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
136
+ }) => string;
137
+ memoizedResultFunc: ((resultFuncArgs_0: {
138
+ drawToolId: string;
139
+ geoJSONLayerId: string;
140
+ activeDrawModeId: string;
141
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
142
+ shouldAllowMultipleShapes: boolean;
143
+ geoJSONIntersectionLayerId?: string | undefined;
144
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
145
+ }) => string) & {
146
+ clearCache: () => void;
147
+ resultsCount: () => number;
148
+ resetResultsCount: () => void;
149
+ };
150
+ lastResult: () => string;
151
+ dependencies: [(state: DrawtoolModuleStore, id: string) => {
152
+ drawToolId: string;
153
+ geoJSONLayerId: string;
154
+ activeDrawModeId: string;
155
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
156
+ shouldAllowMultipleShapes: boolean;
157
+ geoJSONIntersectionLayerId?: string | undefined;
158
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
159
+ }];
160
+ recomputations: () => number;
161
+ resetRecomputations: () => void;
162
+ dependencyRecomputations: () => number;
163
+ resetDependencyRecomputations: () => void;
164
+ } & {
165
+ argsMemoize: typeof import("reselect").weakMapMemoize;
166
+ memoize: typeof import("reselect").weakMapMemoize;
23
167
  };
24
- export declare const getGeoJSONIntersectionLayerId: ((state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined) => string | undefined, {
25
- clearCache: () => void;
26
- }> & {
168
+ export declare const getGeoJSONIntersectionLayerId: ((state: DrawtoolModuleStore, id: string) => string | undefined) & {
27
169
  clearCache: () => void;
170
+ resultsCount: () => number;
171
+ resetResultsCount: () => void;
172
+ } & {
173
+ resultFunc: (resultFuncArgs_0: {
174
+ drawToolId: string;
175
+ geoJSONLayerId: string;
176
+ activeDrawModeId: string;
177
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
178
+ shouldAllowMultipleShapes: boolean;
179
+ geoJSONIntersectionLayerId?: string | undefined;
180
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
181
+ }) => string | undefined;
182
+ memoizedResultFunc: ((resultFuncArgs_0: {
183
+ drawToolId: string;
184
+ geoJSONLayerId: string;
185
+ activeDrawModeId: string;
186
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
187
+ shouldAllowMultipleShapes: boolean;
188
+ geoJSONIntersectionLayerId?: string | undefined;
189
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
190
+ }) => string | undefined) & {
191
+ clearCache: () => void;
192
+ resultsCount: () => number;
193
+ resetResultsCount: () => void;
194
+ };
195
+ lastResult: () => string | undefined;
196
+ dependencies: [(state: DrawtoolModuleStore, id: string) => {
197
+ drawToolId: string;
198
+ geoJSONLayerId: string;
199
+ activeDrawModeId: string;
200
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
201
+ shouldAllowMultipleShapes: boolean;
202
+ geoJSONIntersectionLayerId?: string | undefined;
203
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
204
+ }];
205
+ recomputations: () => number;
206
+ resetRecomputations: () => void;
207
+ dependencyRecomputations: () => number;
208
+ resetDependencyRecomputations: () => void;
209
+ } & {
210
+ argsMemoize: typeof import("reselect").weakMapMemoize;
211
+ memoize: typeof import("reselect").weakMapMemoize;
28
212
  };
29
- export declare const getGeoJSONIntersectionBoundsLayerId: ((state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined) => string | undefined, {
30
- clearCache: () => void;
31
- }> & {
213
+ export declare const getGeoJSONIntersectionBoundsLayerId: ((state: DrawtoolModuleStore, id: string) => string | undefined) & {
32
214
  clearCache: () => void;
215
+ resultsCount: () => number;
216
+ resetResultsCount: () => void;
217
+ } & {
218
+ resultFunc: (resultFuncArgs_0: {
219
+ drawToolId: string;
220
+ geoJSONLayerId: string;
221
+ activeDrawModeId: string;
222
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
223
+ shouldAllowMultipleShapes: boolean;
224
+ geoJSONIntersectionLayerId?: string | undefined;
225
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
226
+ }) => string | undefined;
227
+ memoizedResultFunc: ((resultFuncArgs_0: {
228
+ drawToolId: string;
229
+ geoJSONLayerId: string;
230
+ activeDrawModeId: string;
231
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
232
+ shouldAllowMultipleShapes: boolean;
233
+ geoJSONIntersectionLayerId?: string | undefined;
234
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
235
+ }) => string | undefined) & {
236
+ clearCache: () => void;
237
+ resultsCount: () => number;
238
+ resetResultsCount: () => void;
239
+ };
240
+ lastResult: () => string | undefined;
241
+ dependencies: [(state: DrawtoolModuleStore, id: string) => {
242
+ drawToolId: string;
243
+ geoJSONLayerId: string;
244
+ activeDrawModeId: string;
245
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
246
+ shouldAllowMultipleShapes: boolean;
247
+ geoJSONIntersectionLayerId?: string | undefined;
248
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
249
+ }];
250
+ recomputations: () => number;
251
+ resetRecomputations: () => void;
252
+ dependencyRecomputations: () => number;
253
+ resetDependencyRecomputations: () => void;
254
+ } & {
255
+ argsMemoize: typeof import("reselect").weakMapMemoize;
256
+ memoize: typeof import("reselect").weakMapMemoize;
33
257
  };
34
- export declare const getShouldAllowMultipleShapes: ((state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => boolean) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined) => boolean, {
35
- clearCache: () => void;
36
- }> & {
258
+ export declare const getShouldAllowMultipleShapes: ((state: DrawtoolModuleStore, id: string) => boolean) & {
37
259
  clearCache: () => void;
260
+ resultsCount: () => number;
261
+ resetResultsCount: () => void;
262
+ } & {
263
+ resultFunc: (resultFuncArgs_0: {
264
+ drawToolId: string;
265
+ geoJSONLayerId: string;
266
+ activeDrawModeId: string;
267
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
268
+ shouldAllowMultipleShapes: boolean;
269
+ geoJSONIntersectionLayerId?: string | undefined;
270
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
271
+ }) => boolean;
272
+ memoizedResultFunc: ((resultFuncArgs_0: {
273
+ drawToolId: string;
274
+ geoJSONLayerId: string;
275
+ activeDrawModeId: string;
276
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
277
+ shouldAllowMultipleShapes: boolean;
278
+ geoJSONIntersectionLayerId?: string | undefined;
279
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
280
+ }) => boolean) & {
281
+ clearCache: () => void;
282
+ resultsCount: () => number;
283
+ resetResultsCount: () => void;
284
+ };
285
+ lastResult: () => boolean;
286
+ dependencies: [(state: DrawtoolModuleStore, id: string) => {
287
+ drawToolId: string;
288
+ geoJSONLayerId: string;
289
+ activeDrawModeId: string;
290
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
291
+ shouldAllowMultipleShapes: boolean;
292
+ geoJSONIntersectionLayerId?: string | undefined;
293
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
294
+ }];
295
+ recomputations: () => number;
296
+ resetRecomputations: () => void;
297
+ dependencyRecomputations: () => number;
298
+ resetDependencyRecomputations: () => void;
299
+ } & {
300
+ argsMemoize: typeof import("reselect").weakMapMemoize;
301
+ memoize: typeof import("reselect").weakMapMemoize;
38
302
  };
39
- export declare const getActiveDrawMode: ((state: DrawtoolModuleStore, id: import("@reduxjs/toolkit").EntityId) => import("dist/libs/webmap-react/src").DrawMode | undefined) & import("reselect").OutputSelectorFields<(args_0: import("./reducer").DrawToolItem | undefined) => import("dist/libs/webmap-react/src").DrawMode | undefined, {
40
- clearCache: () => void;
41
- }> & {
303
+ export declare const getActiveDrawMode: ((state: DrawtoolModuleStore, id: string) => import("dist/libs/webmap-react/src").DrawMode | undefined) & {
42
304
  clearCache: () => void;
305
+ resultsCount: () => number;
306
+ resetResultsCount: () => void;
307
+ } & {
308
+ resultFunc: (resultFuncArgs_0: {
309
+ drawToolId: string;
310
+ geoJSONLayerId: string;
311
+ activeDrawModeId: string;
312
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
313
+ shouldAllowMultipleShapes: boolean;
314
+ geoJSONIntersectionLayerId?: string | undefined;
315
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
316
+ }) => import("dist/libs/webmap-react/src").DrawMode | undefined;
317
+ memoizedResultFunc: ((resultFuncArgs_0: {
318
+ drawToolId: string;
319
+ geoJSONLayerId: string;
320
+ activeDrawModeId: string;
321
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
322
+ shouldAllowMultipleShapes: boolean;
323
+ geoJSONIntersectionLayerId?: string | undefined;
324
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
325
+ }) => import("dist/libs/webmap-react/src").DrawMode | undefined) & {
326
+ clearCache: () => void;
327
+ resultsCount: () => number;
328
+ resetResultsCount: () => void;
329
+ };
330
+ lastResult: () => import("dist/libs/webmap-react/src").DrawMode | undefined;
331
+ dependencies: [(state: DrawtoolModuleStore, id: string) => {
332
+ drawToolId: string;
333
+ geoJSONLayerId: string;
334
+ activeDrawModeId: string;
335
+ drawModes: import("dist/libs/webmap-react/src").DrawMode[];
336
+ shouldAllowMultipleShapes: boolean;
337
+ geoJSONIntersectionLayerId?: string | undefined;
338
+ geoJSONIntersectionBoundsLayerId?: string | undefined;
339
+ }];
340
+ recomputations: () => number;
341
+ resetRecomputations: () => void;
342
+ dependencyRecomputations: () => number;
343
+ resetDependencyRecomputations: () => void;
344
+ } & {
345
+ argsMemoize: typeof import("reselect").weakMapMemoize;
346
+ memoize: typeof import("reselect").weakMapMemoize;
43
347
  };
@@ -1,2 +1,2 @@
1
1
  import { SynchronizationGroupModuleState } from './syncGroups/types';
2
- export declare const genericListener: import("@reduxjs/toolkit").ListenerMiddlewareInstance<SynchronizationGroupModuleState, import("@reduxjs/toolkit").ThunkDispatch<SynchronizationGroupModuleState, unknown, import("redux").AnyAction>, unknown>;
2
+ export declare const genericListener: import("@reduxjs/toolkit").ListenerMiddlewareInstance<SynchronizationGroupModuleState, import("redux-thunk").ThunkDispatch<SynchronizationGroupModuleState, unknown, import("redux").UnknownAction>, unknown>;
@@ -1,13 +1,13 @@
1
1
  import { PayloadAction, EntityState } from '@reduxjs/toolkit';
2
2
  import { LoadingIndicatorType, SetIsEDRLoadingPayload, SetIsGetCapabilitiesLoadingPayload, SetIsGetMapLoadingPayload } from './types';
3
- export declare const loadingIndicatorAdapter: import("@reduxjs/toolkit").EntityAdapter<LoadingIndicatorType>;
4
- export declare const slice: import("@reduxjs/toolkit").Slice<EntityState<LoadingIndicatorType>, {
5
- setGetMapIsLoading: (draft: EntityState<LoadingIndicatorType>, action: PayloadAction<SetIsGetMapLoadingPayload>) => void;
6
- setGetCapabilitiesIsLoading: (draft: EntityState<LoadingIndicatorType>, action: PayloadAction<SetIsGetCapabilitiesLoadingPayload>) => void;
7
- setEDRIsLoading: (draft: EntityState<LoadingIndicatorType>, action: PayloadAction<SetIsEDRLoadingPayload>) => void;
8
- }, "loadingIndicatorReducer">;
3
+ export declare const loadingIndicatorAdapter: import("@reduxjs/toolkit").EntityAdapter<LoadingIndicatorType, string>;
4
+ export declare const slice: import("@reduxjs/toolkit").Slice<EntityState<LoadingIndicatorType, string>, {
5
+ setGetMapIsLoading: (draft: EntityState<LoadingIndicatorType, string>, action: PayloadAction<SetIsGetMapLoadingPayload>) => void;
6
+ setGetCapabilitiesIsLoading: (draft: EntityState<LoadingIndicatorType, string>, action: PayloadAction<SetIsGetCapabilitiesLoadingPayload>) => void;
7
+ setEDRIsLoading: (draft: EntityState<LoadingIndicatorType, string>, action: PayloadAction<SetIsEDRLoadingPayload>) => void;
8
+ }, "loadingIndicatorReducer", "loadingIndicatorReducer", import("@reduxjs/toolkit").SliceSelectors<EntityState<LoadingIndicatorType, string>>>;
9
9
  export declare const loadingIndicatorActions: import("@reduxjs/toolkit").CaseReducerActions<{
10
- setGetMapIsLoading: (draft: EntityState<LoadingIndicatorType>, action: PayloadAction<SetIsGetMapLoadingPayload>) => void;
11
- setGetCapabilitiesIsLoading: (draft: EntityState<LoadingIndicatorType>, action: PayloadAction<SetIsGetCapabilitiesLoadingPayload>) => void;
12
- setEDRIsLoading: (draft: EntityState<LoadingIndicatorType>, action: PayloadAction<SetIsEDRLoadingPayload>) => void;
13
- }, "loadingIndicatorReducer">, loadingIndicatorReducer: import("redux").Reducer<EntityState<LoadingIndicatorType>>;
10
+ setGetMapIsLoading: (draft: EntityState<LoadingIndicatorType, string>, action: PayloadAction<SetIsGetMapLoadingPayload>) => void;
11
+ setGetCapabilitiesIsLoading: (draft: EntityState<LoadingIndicatorType, string>, action: PayloadAction<SetIsGetCapabilitiesLoadingPayload>) => void;
12
+ setEDRIsLoading: (draft: EntityState<LoadingIndicatorType, string>, action: PayloadAction<SetIsEDRLoadingPayload>) => void;
13
+ }, "loadingIndicatorReducer">, loadingIndicatorReducer: import("redux").Reducer<EntityState<LoadingIndicatorType, string>>;