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/index.cjs +1 -5825
- package/index.js +1 -5825
- package/package.json +1 -1
- package/types/dphelper.d.ts +4 -1
package/package.json
CHANGED
package/types/dphelper.d.ts
CHANGED
|
@@ -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
|