@extscreen/es-core 1.0.7 → 1.0.8
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/dist/index.js +7 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -666,6 +666,11 @@ var ESAudioModule$1 = new ESAudioModule();
|
|
666
666
|
class ESModule {
|
667
667
|
|
668
668
|
//---------------------------------ESModule--------------------------
|
669
|
+
getESSDKInfo() {
|
670
|
+
return Vue.Native.callNativeWithPromise('ESModule',
|
671
|
+
'getESSDKInfo',);
|
672
|
+
}
|
673
|
+
|
669
674
|
getESSDKVersionCode() {
|
670
675
|
return Vue.Native.callNativeWithPromise('ESModule',
|
671
676
|
'getESSDKVersionCode',);
|
@@ -681,9 +686,9 @@ class ESModule {
|
|
681
686
|
'getESPackageName',);
|
682
687
|
}
|
683
688
|
|
684
|
-
|
689
|
+
getESMiniProgramPath() {
|
685
690
|
return Vue.Native.callNativeWithPromise('ESModule',
|
686
|
-
'
|
691
|
+
'getESMiniProgramPath',);
|
687
692
|
}
|
688
693
|
|
689
694
|
sendESNativeMapEventTop(eventName, mapParams) {
|