jmapcloud-ng-core-types 1.1.33 → 1.1.35
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/ambient.d.ts +1 -0
- package/index.d.ts +2 -3
- package/package.json +1 -1
- package/public/core.d.ts +11701 -11467
- package/public/global-aliases.d.ts +420 -421
- package/public/jmap/ajax.d.ts +34 -33
- package/public/jmap/attachment.d.ts +20 -19
- package/public/jmap/datasource.ts +6 -7
- package/public/jmap/date.d.ts +10 -11
- package/public/jmap/extension.d.ts +179 -180
- package/public/jmap/features.d.ts +28 -29
- package/public/jmap/form.d.ts +359 -354
- package/public/jmap/formJMC.d.ts +87 -88
- package/public/jmap/geocoding.d.ts +22 -23
- package/public/jmap/geometry.d.ts +23 -31
- package/public/jmap/language.d.ts +15 -15
- package/public/jmap/layer.d.ts +394 -393
- package/public/jmap/main.d.ts +16 -17
- package/public/jmap/map-context.d.ts +62 -64
- package/public/jmap/map.d.ts +544 -545
- package/public/jmap/mouseover.d.ts +45 -47
- package/public/jmap/photos.d.ts +28 -29
- package/public/jmap/project.d.ts +40 -41
- package/public/jmap/selection.d.ts +18 -19
- package/public/jmap/server.d.ts +36 -34
- package/public/jmap/simple-search.d.ts +32 -33
- package/public/jmap/startup-options.d.ts +442 -443
- package/public/jmap/table.d.ts +45 -47
- package/public/jmap/ui.d.ts +8 -9
- package/public/jmap/user.d.ts +105 -109
- package/index.ts +0 -1044
- package/public/jmap/jmapcloud-types.d.ts +0 -10
package/ambient.d.ts
CHANGED
package/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
/// <reference path="./public/global-aliases.d.ts" />
|
|
2
1
|
import { Feature, FeatureCollection, LineString, MultiLineString, Point, Polygon } from "geojson"
|
|
3
2
|
import { JForm as JFormJMC } from "jmapcloud-types"
|
|
4
|
-
import { Store } from "redux"
|
|
3
|
+
import { Action, Store } from "redux"
|
|
5
4
|
|
|
6
5
|
export type { JCoreOptions } from "./public/jmap/startup-options.d.ts"
|
|
7
6
|
|
|
@@ -159,7 +158,7 @@ export interface JFeatureService {
|
|
|
159
158
|
export interface JCoreMainService {
|
|
160
159
|
getVersion(): string
|
|
161
160
|
getApiVersion(): string
|
|
162
|
-
getDataStore(): Store<JCoreState>
|
|
161
|
+
getDataStore(): Store<JCoreState, Action>
|
|
163
162
|
getRestUrl(): string
|
|
164
163
|
openDocumentation(): void
|
|
165
164
|
getOS(): JOPERATING_SYSTEMS
|