@extscreen/es-core 1.0.0 → 1.0.1
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 +44 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -665,6 +665,50 @@ var ESAudioModule$1 = new ESAudioModule();
|
|
665
665
|
*/
|
666
666
|
class ESModule {
|
667
667
|
|
668
|
+
//---------------------------------ESModule--------------------------
|
669
|
+
getESSDKVersionCode() {
|
670
|
+
return Vue.Native.callNativeWithPromise('ESModule',
|
671
|
+
'getESSDKVersionCode',);
|
672
|
+
}
|
673
|
+
|
674
|
+
getESSDKVersionName() {
|
675
|
+
return Vue.Native.callNativeWithPromise('ESModule',
|
676
|
+
'getESSDKVersionName',);
|
677
|
+
}
|
678
|
+
|
679
|
+
getESPackageName() {
|
680
|
+
return Vue.Native.callNativeWithPromise('ESModule',
|
681
|
+
'getESPackageName',);
|
682
|
+
}
|
683
|
+
|
684
|
+
getESDirPath() {
|
685
|
+
return Vue.Native.callNativeWithPromise('ESModule',
|
686
|
+
'getESDirPath',);
|
687
|
+
}
|
688
|
+
|
689
|
+
sendESNativeMapEventTop(eventName, mapParams) {
|
690
|
+
return Vue.Native.callNativeWithPromise('ESModule',
|
691
|
+
'sendESNativeMapEventTop', eventName, mapParams);
|
692
|
+
}
|
693
|
+
|
694
|
+
sendESNativeArrayEventTop(eventName, arrayParams) {
|
695
|
+
return Vue.Native.callNativeWithPromise('ESModule',
|
696
|
+
'sendESNativeArrayEventTop', eventName, arrayParams);
|
697
|
+
}
|
698
|
+
|
699
|
+
sendESNativeMapEventAll(eventName, mapParams) {
|
700
|
+
return Vue.Native.callNativeWithPromise('ESModule',
|
701
|
+
'sendESNativeMapEventAll', eventName, mapParams);
|
702
|
+
}
|
703
|
+
|
704
|
+
|
705
|
+
sendESNativeArrayEventAll(eventName, arrayParams) {
|
706
|
+
return Vue.Native.callNativeWithPromise('ESModule',
|
707
|
+
'sendESNativeArrayEventAll', eventName, arrayParams);
|
708
|
+
}
|
709
|
+
|
710
|
+
//---------------------------------EsNativeModule-------------------------
|
711
|
+
|
668
712
|
getSupportSchemes() {
|
669
713
|
return Vue.Native.callNativeWithPromise('EsNativeModule',
|
670
714
|
'getSupportSchemes',);
|