@xapp/form-widget 1.86.0 → 1.87.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/api/__test__/stentor-api.test.d.ts +8 -0
- package/dist/index.es.js +43 -43
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +321 -0
- package/dist/xapp-form-widget.js +3 -3
- package/package.json +9 -9
|
@@ -2,3 +2,11 @@
|
|
|
2
2
|
* Unit tests for StentorApi - specifically trackEventBeacon
|
|
3
3
|
*/
|
|
4
4
|
declare const mockFetch: jest.Mock<any, any>;
|
|
5
|
+
declare const localStorageMock: {
|
|
6
|
+
getItem: (key: string) => string | null;
|
|
7
|
+
setItem: (key: string, value: string) => void;
|
|
8
|
+
removeItem: (key: string) => void;
|
|
9
|
+
clear: () => void;
|
|
10
|
+
readonly length: number;
|
|
11
|
+
key: (index: number) => string | null;
|
|
12
|
+
};
|