@opengeoweb/store 9.4.0 → 9.5.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.
- package/index.esm.js +237 -127
- package/package.json +1 -1
- package/src/store/generic/synchronizationGroups/selectors.d.ts +27 -6
- package/src/store/index.d.ts +1 -0
- package/src/store/mapStore/index.d.ts +1 -0
- package/src/store/mapStore/layers/selectors.d.ts +38 -21
- package/src/store/mapStore/map/index.d.ts +1 -1
- package/src/store/mapStore/map/reducer.d.ts +3 -1
- package/src/store/mapStore/map/sagas.d.ts +1 -0
- package/src/store/mapStore/map/selectors.d.ts +71 -51
- package/src/store/mapStore/map/utils.d.ts +1 -1
package/package.json
CHANGED
|
@@ -15,13 +15,34 @@ export declare const getSynchronizationGroupState: ((state: CoreAppStore) => Syn
|
|
|
15
15
|
}> & {
|
|
16
16
|
clearCache: () => void;
|
|
17
17
|
};
|
|
18
|
-
export declare const getSynchronizationGroup: (state:
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
18
|
+
export declare const getSynchronizationGroup: ((state: any, id: any) => SynchronizationGroup) & import("reselect").OutputSelectorFields<(args_0: SynchronizationGroupState, args_1: string) => SynchronizationGroup, {
|
|
19
|
+
clearCache: () => void;
|
|
20
|
+
}> & {
|
|
21
|
+
clearCache: () => void;
|
|
22
|
+
};
|
|
23
|
+
export declare const getSynchronizationGroupSource: ((state: any, id: any) => SynchronizationSource) & import("reselect").OutputSelectorFields<(args_0: SynchronizationGroupState, args_1: string) => SynchronizationSource, {
|
|
24
|
+
clearCache: () => void;
|
|
25
|
+
}> & {
|
|
26
|
+
clearCache: () => void;
|
|
27
|
+
};
|
|
28
|
+
export declare const getTargets: ((state: any, payload: any, actionType: any) => GenericSyncActionPayload[]) & import("reselect").OutputSelectorFields<(args_0: SynchronizationGroupState, args_1: GenericActionPayload, args_2: SyncType) => GenericSyncActionPayload[], {
|
|
29
|
+
clearCache: () => void;
|
|
30
|
+
}> & {
|
|
31
|
+
clearCache: () => void;
|
|
32
|
+
};
|
|
33
|
+
export declare const getTargetGroups: ((state: any, payload: any, actionType: any) => string[]) & import("reselect").OutputSelectorFields<(args_0: SynchronizationGroupState, args_1: GenericActionPayload, args_2: SyncType) => string[], {
|
|
34
|
+
clearCache: () => void;
|
|
35
|
+
}> & {
|
|
36
|
+
clearCache: () => void;
|
|
37
|
+
};
|
|
38
|
+
export declare const getSourceId: ((state: any, sourceId: any) => string) & import("reselect").OutputSelectorFields<(args_0: SynchronizationGroupState, args_1: string | {
|
|
23
39
|
sourceId: string;
|
|
24
|
-
}) => string
|
|
40
|
+
}) => string, {
|
|
41
|
+
clearCache: () => void;
|
|
42
|
+
}> & {
|
|
43
|
+
clearCache: () => void;
|
|
44
|
+
};
|
|
45
|
+
export declare const getAllTargetGroupsForSource: ((state: any, sourceId: any) => string[]) & import("reselect").OutputSelectorFields<(args_0: SynchronizationGroupState, args_1: string) => string[], {
|
|
25
46
|
clearCache: () => void;
|
|
26
47
|
}> & {
|
|
27
48
|
clearCache: () => void;
|
package/src/store/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export declare const mapStoreActions: {
|
|
|
10
10
|
unregisterMap: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
11
11
|
mapId: string;
|
|
12
12
|
}, "mapReducer/unregisterMap">;
|
|
13
|
+
setStepBackwardOrForward: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/webmap-react/src").SetStepBackWardOrForward, "mapReducer/setStepBackwardOrForward">;
|
|
13
14
|
setBbox: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/webmap-react/src").SetBboxPayload, "mapReducer/setBbox">;
|
|
14
15
|
mapUpdateAllMapDimensions: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("dist/libs/webmap-react/src").UpdateAllMapDimensionsPayload, "mapReducer/mapUpdateAllMapDimensions">;
|
|
15
16
|
mapStartAnimation: import("@reduxjs/toolkit").ActionCreatorWithPayload<import("./types").SetMapAnimationStartPayload, "mapReducer/mapStartAnimation">;
|
|
@@ -9,7 +9,24 @@ import { LayerState, Layer, LayerStatus } from './types';
|
|
|
9
9
|
* @param {string} layerId Id of the layer
|
|
10
10
|
* @returns {object} object containing layer information (service, name, style, enabled etc.)
|
|
11
11
|
*/
|
|
12
|
-
export declare const getLayerById: (
|
|
12
|
+
export declare const getLayerById: ((state: any, layerId: any) => ReduxLayer | undefined) & import("reselect").OutputSelectorFields<(args_0: LayerState | undefined, args_1: string) => ReduxLayer | undefined, {
|
|
13
|
+
clearCache: () => void;
|
|
14
|
+
}> & {
|
|
15
|
+
clearCache: () => void;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* Gets a layer from the layers part of the store by its Id, but without the time dimension. (All other dimensions are still included)
|
|
19
|
+
*
|
|
20
|
+
* Example: layer = getLayerByIdWithoutTimeDimension(store, 'layerId')
|
|
21
|
+
* @param {object} store object from which the layer state will be extracted
|
|
22
|
+
* @param {string} layerId Id of the layer
|
|
23
|
+
* @returns {object} object containing layer information (service, name, style, enabled etc.)
|
|
24
|
+
*/
|
|
25
|
+
export declare const getLayerByIdWithoutTimeDimension: ((state: any, layerId: any) => ReduxLayer | undefined) & import("reselect").OutputSelectorFields<(args_0: LayerState | undefined, args_1: string) => ReduxLayer | undefined, {
|
|
26
|
+
clearCache: () => void;
|
|
27
|
+
}> & {
|
|
28
|
+
clearCache: () => void;
|
|
29
|
+
};
|
|
13
30
|
/**
|
|
14
31
|
* Retrieves all layers indexed by layerId
|
|
15
32
|
*
|
|
@@ -115,7 +132,7 @@ export declare const getFeatureLayers: ((state: CoreAppStore) => ReduxLayer[]) &
|
|
|
115
132
|
* @param {string} layerId layerId: string - Id of the layer
|
|
116
133
|
* @returns {array} returnType: Dimension[] - array containing layer dimensions
|
|
117
134
|
*/
|
|
118
|
-
export declare const getLayerDimensions: ((state:
|
|
135
|
+
export declare const getLayerDimensions: ((state: any, layerId: any) => Dimension[]) & import("reselect").OutputSelectorFields<(args_0: ReduxLayer | undefined) => Dimension[], {
|
|
119
136
|
clearCache: () => void;
|
|
120
137
|
}> & {
|
|
121
138
|
clearCache: () => void;
|
|
@@ -128,7 +145,7 @@ export declare const getLayerDimensions: ((state: CoreAppStore, layerId?: string
|
|
|
128
145
|
* @param {string} layerId layerId: string - Id of the layer
|
|
129
146
|
* @returns {array} returnType: Dimension[] - array containing layer dimensions, excluding the time dimension
|
|
130
147
|
*/
|
|
131
|
-
export declare const getLayerNonTimeDimensions: ((state:
|
|
148
|
+
export declare const getLayerNonTimeDimensions: ((state: any, layerId: any) => Dimension[]) & import("reselect").OutputSelectorFields<(args_0: Dimension[]) => Dimension[], {
|
|
132
149
|
clearCache: () => void;
|
|
133
150
|
}> & {
|
|
134
151
|
clearCache: () => void;
|
|
@@ -141,7 +158,7 @@ export declare const getLayerNonTimeDimensions: ((state: CoreAppStore, layerId?:
|
|
|
141
158
|
* @param {string} layerId layerId: string - Id of the layer
|
|
142
159
|
* @returns {object} returnType: object - object of layer time dimension
|
|
143
160
|
*/
|
|
144
|
-
export declare const getLayerTimeDimension: ((state:
|
|
161
|
+
export declare const getLayerTimeDimension: ((state: any, layerId: any) => Dimension | undefined) & import("reselect").OutputSelectorFields<(args_0: Dimension[]) => Dimension | undefined, {
|
|
145
162
|
clearCache: () => void;
|
|
146
163
|
}> & {
|
|
147
164
|
clearCache: () => void;
|
|
@@ -154,12 +171,12 @@ export declare const getLayerTimeDimension: ((state: CoreAppStore, layerId?: str
|
|
|
154
171
|
* @param {string} layerId layerId: string - Id of the layer
|
|
155
172
|
* @returns {boolean} returnType: boolean - boolean indicating whether the layer has a time dimension
|
|
156
173
|
*/
|
|
157
|
-
export declare const getLayerHasTimeDimension: ((state:
|
|
174
|
+
export declare const getLayerHasTimeDimension: ((state: any, layerId: any) => boolean) & import("reselect").OutputSelectorFields<(args_0: Dimension | undefined) => boolean, {
|
|
158
175
|
clearCache: () => void;
|
|
159
176
|
}> & {
|
|
160
177
|
clearCache: () => void;
|
|
161
178
|
};
|
|
162
|
-
export declare const getLayerCurrentTime: ((state:
|
|
179
|
+
export declare const getLayerCurrentTime: ((state: any, layerId: any) => string | undefined) & import("reselect").OutputSelectorFields<(args_0: Dimension | undefined) => string | undefined, {
|
|
163
180
|
clearCache: () => void;
|
|
164
181
|
}> & {
|
|
165
182
|
clearCache: () => void;
|
|
@@ -173,7 +190,7 @@ export declare const getLayerCurrentTime: ((state: CoreAppStore, layerId?: strin
|
|
|
173
190
|
* @param {string} dimensionName dimensionName: string - name of dimension you want to retrieve the dimension data for
|
|
174
191
|
* @returns {object} returnType: object - object of layer dimension
|
|
175
192
|
*/
|
|
176
|
-
export declare const getLayerDimension: ((state:
|
|
193
|
+
export declare const getLayerDimension: ((state: any, _layerId: any, dimensionName: string) => Dimension) & import("reselect").OutputSelectorFields<(args_0: Dimension[], args_1: string) => Dimension, {
|
|
177
194
|
clearCache: () => void;
|
|
178
195
|
}> & {
|
|
179
196
|
clearCache: () => void;
|
|
@@ -186,7 +203,7 @@ export declare const getLayerDimension: ((state: CoreAppStore, _layerId: string,
|
|
|
186
203
|
* @param {string} layerId layerId: string - Id of the layer
|
|
187
204
|
* @returns {number} returnType: number - opacity as a number (between 0 and 1)
|
|
188
205
|
*/
|
|
189
|
-
export declare const getLayerOpacity: ((state:
|
|
206
|
+
export declare const getLayerOpacity: ((state: any, layerId: any) => number) & import("reselect").OutputSelectorFields<(args_0: ReduxLayer | undefined) => number, {
|
|
190
207
|
clearCache: () => void;
|
|
191
208
|
}> & {
|
|
192
209
|
clearCache: () => void;
|
|
@@ -199,7 +216,7 @@ export declare const getLayerOpacity: ((state: CoreAppStore, layerId?: string |
|
|
|
199
216
|
* @param {string} layerId layerId: string - Id of the layer
|
|
200
217
|
* @returns {boolean} returnType: boolean - true if enabled, false if disabled
|
|
201
218
|
*/
|
|
202
|
-
export declare const getLayerEnabled: ((state:
|
|
219
|
+
export declare const getLayerEnabled: ((state: any, layerId: any) => boolean) & import("reselect").OutputSelectorFields<(args_0: ReduxLayer | undefined) => boolean, {
|
|
203
220
|
clearCache: () => void;
|
|
204
221
|
}> & {
|
|
205
222
|
clearCache: () => void;
|
|
@@ -212,7 +229,7 @@ export declare const getLayerEnabled: ((state: CoreAppStore, layerId?: string |
|
|
|
212
229
|
* @param {string} layerId layerId: string - Id of the layer
|
|
213
230
|
* @returns {string} returnType: string - layer name
|
|
214
231
|
*/
|
|
215
|
-
export declare const getLayerName: ((state:
|
|
232
|
+
export declare const getLayerName: ((state: any, layerId: any) => string) & import("reselect").OutputSelectorFields<(args_0: ReduxLayer | undefined) => string, {
|
|
216
233
|
clearCache: () => void;
|
|
217
234
|
}> & {
|
|
218
235
|
clearCache: () => void;
|
|
@@ -225,7 +242,7 @@ export declare const getLayerName: ((state: CoreAppStore, layerId?: string | und
|
|
|
225
242
|
* @param {string} layerId layerId: string - Id of the layer
|
|
226
243
|
* @returns {string} returnType: string - layer service
|
|
227
244
|
*/
|
|
228
|
-
export declare const getLayerService: ((state:
|
|
245
|
+
export declare const getLayerService: ((state: any, layerId: any) => string) & import("reselect").OutputSelectorFields<(args_0: ReduxLayer | undefined) => string, {
|
|
229
246
|
clearCache: () => void;
|
|
230
247
|
}> & {
|
|
231
248
|
clearCache: () => void;
|
|
@@ -238,7 +255,7 @@ export declare const getLayerService: ((state: CoreAppStore, layerId?: string |
|
|
|
238
255
|
* @param {string} layerId layerId: string - Id of the layer
|
|
239
256
|
* @returns {string} returnType: string - style that is currently selected
|
|
240
257
|
*/
|
|
241
|
-
export declare const getLayerStyle: ((state:
|
|
258
|
+
export declare const getLayerStyle: ((state: any, layerId: any) => string) & import("reselect").OutputSelectorFields<(args_0: ReduxLayer | undefined) => string, {
|
|
242
259
|
clearCache: () => void;
|
|
243
260
|
}> & {
|
|
244
261
|
clearCache: () => void;
|
|
@@ -251,7 +268,7 @@ export declare const getLayerStyle: ((state: CoreAppStore, layerId?: string | un
|
|
|
251
268
|
* @param {string} layerId layerId: string - Id of the layer
|
|
252
269
|
* @returns {string} returnType: LayerStatus
|
|
253
270
|
*/
|
|
254
|
-
export declare const getLayerStatus: ((state:
|
|
271
|
+
export declare const getLayerStatus: ((state: any, layerId: any) => LayerStatus) & import("reselect").OutputSelectorFields<(args_0: ReduxLayer | undefined) => LayerStatus, {
|
|
255
272
|
clearCache: () => void;
|
|
256
273
|
}> & {
|
|
257
274
|
clearCache: () => void;
|
|
@@ -277,7 +294,7 @@ export declare const getAvailableBaseLayersForMap: ((state: CoreAppStore, _mapId
|
|
|
277
294
|
* @param {string} mapId layerId: string - Id of the layer
|
|
278
295
|
* @returns {number} selectedFeatureIndex: the index of the selected geojson feature
|
|
279
296
|
*/
|
|
280
|
-
export declare const getSelectedFeatureIndex: ((state:
|
|
297
|
+
export declare const getSelectedFeatureIndex: ((state: any, layerId: any) => number | undefined) & import("reselect").OutputSelectorFields<(args_0: ReduxLayer | undefined) => number | undefined, {
|
|
281
298
|
clearCache: () => void;
|
|
282
299
|
}> & {
|
|
283
300
|
clearCache: () => void;
|
|
@@ -290,19 +307,19 @@ export declare const getSelectedFeatureIndex: ((state: CoreAppStore, layerId?: s
|
|
|
290
307
|
* @param {string} mapId layerId: string - Id of the layer
|
|
291
308
|
* @returns {number} isLayerInEditMode: boolean - isInEditMode
|
|
292
309
|
*/
|
|
293
|
-
export declare const getIsLayerInEditMode: ((state:
|
|
310
|
+
export declare const getIsLayerInEditMode: ((state: any, layerId: any) => boolean) & import("reselect").OutputSelectorFields<(args_0: ReduxLayer | undefined) => boolean, {
|
|
294
311
|
clearCache: () => void;
|
|
295
312
|
}> & {
|
|
296
313
|
clearCache: () => void;
|
|
297
314
|
};
|
|
298
|
-
export declare const getFeatureLayerGeoJSON: ((state:
|
|
315
|
+
export declare const getFeatureLayerGeoJSON: ((state: any, layerId: any) => import("geojson").FeatureCollection<import("geojson").Geometry, import("geojson").GeoJsonProperties> | undefined) & import("reselect").OutputSelectorFields<(args_0: ReduxLayer | undefined) => import("geojson").FeatureCollection<import("geojson").Geometry, import("geojson").GeoJsonProperties> | undefined, {
|
|
299
316
|
clearCache: () => void;
|
|
300
317
|
}> & {
|
|
301
318
|
clearCache: () => void;
|
|
302
319
|
};
|
|
303
|
-
export declare const getFeatureLayerGeoJSONProperties: ((state:
|
|
320
|
+
export declare const getFeatureLayerGeoJSONProperties: ((state: any, layerId: any) => {
|
|
304
321
|
[name: string]: any;
|
|
305
|
-
}) & import("reselect").OutputSelectorFields<(args_0:
|
|
322
|
+
}) & import("reselect").OutputSelectorFields<(args_0: ReduxLayer | undefined, args_1: number | undefined) => {
|
|
306
323
|
[name: string]: any;
|
|
307
324
|
}, {
|
|
308
325
|
clearCache: () => void;
|
|
@@ -322,17 +339,17 @@ export declare const getDimensionLayerIds: ((state: CoreAppStore, dimensionName:
|
|
|
322
339
|
}> & {
|
|
323
340
|
clearCache: () => void;
|
|
324
341
|
};
|
|
325
|
-
export declare const getAcceptanceTimeInMinutes: ((state:
|
|
342
|
+
export declare const getAcceptanceTimeInMinutes: ((state: any, layerId: any) => number | undefined) & import("reselect").OutputSelectorFields<(args_0: ReduxLayer | undefined) => number | undefined, {
|
|
326
343
|
clearCache: () => void;
|
|
327
344
|
}> & {
|
|
328
345
|
clearCache: () => void;
|
|
329
346
|
};
|
|
330
|
-
export declare const getLayerIsInsideAcceptanceTime: ((state:
|
|
347
|
+
export declare const getLayerIsInsideAcceptanceTime: ((state: any, _layerId: any, mapId: string) => "equal" | "outside" | "inside") & import("reselect").OutputSelectorFields<(args_0: number | undefined, args_1: string | undefined, args_2: string | undefined) => "equal" | "outside" | "inside", {
|
|
331
348
|
clearCache: () => void;
|
|
332
349
|
}> & {
|
|
333
350
|
clearCache: () => void;
|
|
334
351
|
};
|
|
335
|
-
export declare const getUseLatestReferenceTime: ((state:
|
|
352
|
+
export declare const getUseLatestReferenceTime: ((state: any, layerId: any) => boolean) & import("reselect").OutputSelectorFields<(args_0: ReduxLayer | undefined) => boolean, {
|
|
336
353
|
clearCache: () => void;
|
|
337
354
|
}> & {
|
|
338
355
|
clearCache: () => void;
|
|
@@ -8,7 +8,7 @@ export declare const mapUtils: {
|
|
|
8
8
|
checkValidLayersPayload: (layers: import("../types").Layer[], mapId: string) => boolean;
|
|
9
9
|
getDraftMapById: (mapId: string, draft: mapTypes.WebMapState) => mapTypes.WebMap;
|
|
10
10
|
produceDraftStateSetWebMapDimension: (draft: mapTypes.WebMapState, mapId: string, dimensionFromAction: mapTypes.Dimension, overwriteCurrentValue: boolean) => void;
|
|
11
|
-
findMapIdFromLayerId: (
|
|
11
|
+
findMapIdFromLayerId: (mapState?: mapTypes.WebMapState | undefined, layerId?: string | undefined) => string | null;
|
|
12
12
|
produceDraftStateSetMapDimensionFromLayerChangeDimension: (draft: mapTypes.WebMapState, layerId: string, dimension: mapTypes.Dimension) => void;
|
|
13
13
|
getTimeStepFromDataInterval: (timeInterval: import("dist/libs/webmap/src").TimeInterval) => number;
|
|
14
14
|
getActiveLayerTimeStep: (timeDimension: mapTypes.Dimension | undefined) => number | undefined;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PayloadAction, Draft } from '@reduxjs/toolkit';
|
|
2
|
-
import { MapPinLocationPayload, SetBboxPayload, UpdateAllMapDimensionsPayload } from '@opengeoweb/webmap-react';
|
|
2
|
+
import { MapPinLocationPayload, SetBboxPayload, SetStepBackWardOrForward, UpdateAllMapDimensionsPayload } from '@opengeoweb/webmap-react';
|
|
3
3
|
import type { WebMapState, SetAutoLayerIdPayload, SetMapAnimationStartPayload, SetMapAnimationStopPayload, SetTimeSliderSpanPayload, SetTimeStepPayload, SetAnimationStartTimePayload, SetAnimationEndTimePayload, SetAnimationDelayPayload, MoveLayerPayload, SetTimeSliderWidthPayload, SetTimeSliderCenterTimePayload, SetEndTimeOverriding, ToggleAutoUpdatePayload, ToggleTimestepAutoPayload, ToggleTimeSpanAutoPayload, ToggleTimeSliderHoverPayload, DisableMapPinPayload, SetTimeSliderSecondsPerPxPayload, ToggleTimeSliderIsVisiblePayload, SetDockedLayerManagerSize } from './types';
|
|
4
4
|
import { ToggleMapPinIsVisiblePayload, ToggleZoomControlsPayload, SetTimeSliderUnfilteredSelectedTimePayload } from '../types';
|
|
5
5
|
/**
|
|
@@ -17,6 +17,7 @@ export declare const slice: import("@reduxjs/toolkit").Slice<WebMapState, {
|
|
|
17
17
|
unregisterMap: (draft: Draft<WebMapState>, action: PayloadAction<{
|
|
18
18
|
mapId: string;
|
|
19
19
|
}>) => void;
|
|
20
|
+
setStepBackwardOrForward: (_draft: Draft<WebMapState>, _action: PayloadAction<SetStepBackWardOrForward>) => void;
|
|
20
21
|
setBbox: (draft: Draft<WebMapState>, action: PayloadAction<SetBboxPayload>) => void;
|
|
21
22
|
mapUpdateAllMapDimensions: (draft: Draft<WebMapState>, action: PayloadAction<UpdateAllMapDimensionsPayload>) => void;
|
|
22
23
|
mapStartAnimation: (draft: Draft<WebMapState>, action: PayloadAction<SetMapAnimationStartPayload>) => void;
|
|
@@ -61,6 +62,7 @@ export declare const mapActions: {
|
|
|
61
62
|
unregisterMap: import("@reduxjs/toolkit").ActionCreatorWithPayload<{
|
|
62
63
|
mapId: string;
|
|
63
64
|
}, "mapReducer/unregisterMap">;
|
|
65
|
+
setStepBackwardOrForward: import("@reduxjs/toolkit").ActionCreatorWithPayload<SetStepBackWardOrForward, "mapReducer/setStepBackwardOrForward">;
|
|
64
66
|
setBbox: import("@reduxjs/toolkit").ActionCreatorWithPayload<SetBboxPayload, "mapReducer/setBbox">;
|
|
65
67
|
mapUpdateAllMapDimensions: import("@reduxjs/toolkit").ActionCreatorWithPayload<UpdateAllMapDimensionsPayload, "mapReducer/mapUpdateAllMapDimensions">;
|
|
66
68
|
mapStartAnimation: import("@reduxjs/toolkit").ActionCreatorWithPayload<SetMapAnimationStartPayload, "mapReducer/mapStartAnimation">;
|
|
@@ -20,5 +20,6 @@ export declare function toggleAutoUpdateSaga({ payload, }: ReturnType<typeof map
|
|
|
20
20
|
export declare function handleBaseLayersSaga(mapId: string, baseLayers: Layer[]): SagaIterator;
|
|
21
21
|
export declare function setMapPresetSaga({ payload, }: ReturnType<typeof mapActions.setMapPreset>): SagaIterator;
|
|
22
22
|
export declare function unregisterMapSaga({ payload, }: ReturnType<typeof mapActions.unregisterMap>): Generator;
|
|
23
|
+
export declare function setStepBackwardOrForwardSaga({ payload, }: ReturnType<typeof mapActions.setStepBackwardOrForward>): Generator;
|
|
23
24
|
export declare function rootSaga(): SagaIterator;
|
|
24
25
|
export default rootSaga;
|