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.
@@ -2,6 +2,6 @@ interface CheckAccessTokenReturnValue {
|
|
2
2
|
continueToRequest: boolean;
|
3
3
|
accessToken: string | undefined;
|
4
4
|
}
|
5
|
-
export declare function isUserLoggedIn():
|
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):
|
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
|
-
}):
|
4
|
+
}): void;
|