propro-common-components 0.1.235 → 0.1.237

Sign up to get free protection for your applications and to get access to all the features.
@@ -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.235",
3
+ "version": "0.1.237",
4
4
  "type": "module",
5
5
  "main": "dist/propro-common-components.js",
6
6
  "types": "dist/main.d.ts",