jmapcloud-ng-types 1.0.9 → 1.0.11
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.ts +1 -1
- package/package.json +6 -6
- package/public/app.d.ts +413 -389
- package/public/print.d.ts +6 -0
- package/public/startup-options.d.ts +27 -26
package/index.ts
CHANGED
|
@@ -357,7 +357,7 @@ export interface JAppPrintService {
|
|
|
357
357
|
getFileType(): JAPP_PRINT_FILE_TYPES
|
|
358
358
|
setHiResolution(isHiResolution: boolean): void
|
|
359
359
|
getHiResolution(): boolean
|
|
360
|
-
takeCapture(): void
|
|
360
|
+
takeCapture(returnAsScreenCaptureResult?: boolean): Promise<void | JAppPrintCaptureResult>
|
|
361
361
|
}
|
|
362
362
|
|
|
363
363
|
export interface JAppLayerService {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jmapcloud-ng-types",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.11",
|
|
4
4
|
"description": "JMap Cloud specific version of JMap Cloud NG types and interfaces",
|
|
5
5
|
"main": "src/app.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
},
|
|
23
23
|
"homepage": "https://github.com/k2geospatial/jmapcloud-ng-types#readme",
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@types/react": "18.2
|
|
26
|
-
"jmapcloud-ng-core-types": "1.0.
|
|
27
|
-
"maplibre-gl": "^3.
|
|
28
|
-
"react": "^18.
|
|
29
|
-
"typedoc": "^0.
|
|
25
|
+
"@types/react": "^18.3.2",
|
|
26
|
+
"jmapcloud-ng-core-types": "1.0.9",
|
|
27
|
+
"maplibre-gl": "^4.3.1",
|
|
28
|
+
"react": "^18.3.1",
|
|
29
|
+
"typedoc": "^0.25.13"
|
|
30
30
|
}
|
|
31
31
|
}
|