tek-wallet 0.0.361 → 0.0.362
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.
|
@@ -7,5 +7,9 @@ type DepositFunctionRef = {
|
|
|
7
7
|
open: () => void;
|
|
8
8
|
close: () => void;
|
|
9
9
|
};
|
|
10
|
+
export declare enum DepositMethod {
|
|
11
|
+
RECEIVE_INTERNAL = "receive_internal",
|
|
12
|
+
RECEIVE_EXTERNAL = "receive_external"
|
|
13
|
+
}
|
|
10
14
|
declare const DepositFunction: import("react").ForwardRefExoticComponent<DepositFunctionProps & import("react").RefAttributes<DepositFunctionRef>>;
|
|
11
15
|
export default DepositFunction;
|
|
@@ -49,6 +49,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
49
49
|
};
|
|
50
50
|
var _a;
|
|
51
51
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
52
|
+
exports.DepositMethod = void 0;
|
|
52
53
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
53
54
|
var react_1 = require("react");
|
|
54
55
|
var DrawerComponent_1 = __importDefault(require("../DrawerComponent"));
|
|
@@ -73,6 +74,11 @@ var RequireConnect_1 = __importDefault(require("../RequireConnect"));
|
|
|
73
74
|
var WaitingData_1 = __importDefault(require("../WaitingData"));
|
|
74
75
|
var EmptyData_1 = __importDefault(require("../EmptyData"));
|
|
75
76
|
var Formatter_1 = __importDefault(require("../Formatter"));
|
|
77
|
+
var DepositMethod;
|
|
78
|
+
(function (DepositMethod) {
|
|
79
|
+
DepositMethod["RECEIVE_INTERNAL"] = "receive_internal";
|
|
80
|
+
DepositMethod["RECEIVE_EXTERNAL"] = "receive_external";
|
|
81
|
+
})(DepositMethod || (exports.DepositMethod = DepositMethod = {}));
|
|
76
82
|
var DepositStep;
|
|
77
83
|
(function (DepositStep) {
|
|
78
84
|
DepositStep[DepositStep["SELECT_TOKEN"] = 1] = "SELECT_TOKEN";
|