jmapcloud-ng-types 1.1.16 → 1.1.17

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 (2) hide show
  1. package/package.json +1 -1
  2. package/public/app.d.ts +5 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jmapcloud-ng-types",
3
- "version": "1.1.16",
3
+ "version": "1.1.17",
4
4
  "description": "JMap Cloud specific version of JMap Cloud NG types and interfaces",
5
5
  "main": "src/app.ts",
6
6
  "types": "ambient.d.ts",
package/public/app.d.ts CHANGED
@@ -3484,12 +3484,15 @@ declare global {
3484
3484
  function openForm(params: JFormDialogParams): void
3485
3485
  }
3486
3486
  }
3487
+ }
3488
+
3489
+ }
3487
3490
 
3491
+ // Augment core service to expose the NG Application namespace.
3492
+ declare module "jmapcloud-ng-core-types" {
3488
3493
  interface JCoreService {
3489
3494
  Application: typeof JMapNg.Application
3490
3495
  }
3491
3496
  }
3492
3497
 
3493
- }
3494
-
3495
3498
  export {}