zigap-utils 0.0.37 → 0.0.38
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.cjs.js +9 -9
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +4 -1
- package/dist/util/index.d.ts +1 -1
- package/dist/util/test/index.d.ts +1 -0
- package/dist/util/test/test.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.es.js
CHANGED
|
@@ -14165,8 +14165,11 @@ const m1 = new g1(), w1 = ({
|
|
|
14165
14165
|
...x
|
|
14166
14166
|
}
|
|
14167
14167
|
) : /* @__PURE__ */ vr.jsx("div", { children: "QR loading error" });
|
|
14168
|
+
}, B1 = () => {
|
|
14169
|
+
console.log("TEST..");
|
|
14168
14170
|
};
|
|
14169
14171
|
export {
|
|
14170
14172
|
w1 as AddressProvideQR,
|
|
14171
|
-
E1 as LoginQR
|
|
14173
|
+
E1 as LoginQR,
|
|
14174
|
+
B1 as test
|
|
14172
14175
|
};
|
package/dist/util/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export * from './test';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as test } from './test';
|