dphelper 3.3.3 → 3.3.5

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "dphelper",
3
3
  "code": "dphelper",
4
- "version": "3.3.3",
4
+ "version": "3.3.5",
5
5
  "description": "dphelper devtools for developers",
6
6
  "main": "./index.cjs",
7
7
  "browser": "./index.cjs",
@@ -652,14 +652,17 @@ interface _dphelper {
652
652
 
653
653
  interface Window {
654
654
  [key: string]: any
655
+ dphelper: _dphelper
655
656
  }
656
657
 
657
658
  interface globalThis {
658
659
  [key: string]: any
659
660
  }
660
661
 
662
+ declare var DPH_APP_CODE: string
663
+ declare var DPH_APP_VERSION: string
664
+
661
665
  declare function confirm(message: string, func1: Function, func2?: Function): boolean
662
- declare var __DPH_VERSION__: string
663
666
 
664
667
  declare var dphelper: _dphelper
665
668
  type dphelper = _dphelper