@dcloudio/uni-app-x 0.4.0 → 0.4.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/package.json
CHANGED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/// <reference path="./UTSError.d.ts" />
|
|
2
|
+
|
|
3
|
+
declare class UniError extends UTSError {
|
|
4
|
+
constructor ();
|
|
5
|
+
constructor (message: string);
|
|
6
|
+
constructor (message: string, options: UTSJSONObject);
|
|
7
|
+
constructor (errSubject: string, errCode: number, errMsg: string);
|
|
8
|
+
|
|
9
|
+
errSubject: string;
|
|
10
|
+
errCode: number;
|
|
11
|
+
errMsg: string;
|
|
12
|
+
data: any;
|
|
13
|
+
}
|
package/types/native/index.d.ts
CHANGED
|
@@ -519,8 +519,6 @@ export interface Uni {
|
|
|
519
519
|
* }
|
|
520
520
|
* }
|
|
521
521
|
* }
|
|
522
|
-
* @uniVueVersion 2,3
|
|
523
|
-
* }
|
|
524
522
|
*/
|
|
525
523
|
showToast: ShowToast,
|
|
526
524
|
/**
|
|
@@ -544,8 +542,6 @@ export interface Uni {
|
|
|
544
542
|
* }
|
|
545
543
|
* }
|
|
546
544
|
* }
|
|
547
|
-
* @uniVueVersion 2,3
|
|
548
|
-
* }
|
|
549
545
|
*/
|
|
550
546
|
hideToast: HideToast,
|
|
551
547
|
/**
|
|
@@ -575,8 +571,6 @@ export interface Uni {
|
|
|
575
571
|
* }
|
|
576
572
|
* }
|
|
577
573
|
* }
|
|
578
|
-
* @uniVueVersion 2,3
|
|
579
|
-
* }
|
|
580
574
|
*/
|
|
581
575
|
showLoading: ShowLoading,
|
|
582
576
|
/**
|
|
@@ -607,8 +601,6 @@ export interface Uni {
|
|
|
607
601
|
* }
|
|
608
602
|
* }
|
|
609
603
|
* }
|
|
610
|
-
* @uniVueVersion 2,3
|
|
611
|
-
* }
|
|
612
604
|
*/
|
|
613
605
|
hideLoading: HideLoading,
|
|
614
606
|
/**
|
|
@@ -645,8 +637,6 @@ export interface Uni {
|
|
|
645
637
|
* }
|
|
646
638
|
* }
|
|
647
639
|
* }
|
|
648
|
-
* @uniVueVersion 2,3
|
|
649
|
-
* }
|
|
650
640
|
*/
|
|
651
641
|
showModal: ShowModal,
|
|
652
642
|
/**
|
|
@@ -679,8 +669,6 @@ export interface Uni {
|
|
|
679
669
|
* }
|
|
680
670
|
* }
|
|
681
671
|
* }
|
|
682
|
-
* @uniVueVersion 2,3
|
|
683
|
-
* }
|
|
684
672
|
*/
|
|
685
673
|
showActionSheet: ShowActionSheet
|
|
686
674
|
}
|