propro-common-components 0.1.236 → 0.1.237

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.
@@ -0,0 +1,2 @@
1
+ export declare function localStorageSetItem(key: string, value: unknown): void;
2
+ export declare function localStorageGetItem(key: string): any;
@@ -2,6 +2,6 @@ interface CheckAccessTokenReturnValue {
2
2
  continueToRequest: boolean;
3
3
  accessToken: string | undefined;
4
4
  }
5
- export declare function isUserLoggedIn(): Promise<any>;
5
+ export declare function isUserLoggedIn(): any;
6
6
  export declare const checkAccessToken: () => Promise<CheckAccessTokenReturnValue>;
7
7
  export default checkAccessToken;
@@ -1,4 +1,4 @@
1
- export default function getStorage(key: string): Promise<any>;
1
+ export default function getStorage(key: string): any;
2
2
  export declare function setStorage(key: string, value: unknown, options?: {
3
3
  [key: string]: string | number | boolean | Date;
4
- }): Promise<void>;
4
+ }): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "propro-common-components",
3
- "version": "0.1.236",
3
+ "version": "0.1.237",
4
4
  "type": "module",
5
5
  "main": "dist/propro-common-components.js",
6
6
  "types": "dist/main.d.ts",