propro-common-components 0.1.16 → 0.1.18
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/Utils/checkAccessToken.d.ts +1 -1
- package/dist/main.d.ts +2 -1
- package/dist/propro-common-components.js +1860 -1873
- package/package.json +1 -1
@@ -1,2 +1,2 @@
|
|
1
|
-
declare const checkAccessToken: () => Promise<void>;
|
1
|
+
export declare const checkAccessToken: () => Promise<void>;
|
2
2
|
export default checkAccessToken;
|
package/dist/main.d.ts
CHANGED
@@ -5,4 +5,5 @@ import { AppContext, AppProvider } from "./context/AppContext";
|
|
5
5
|
import Loading from "./components/ui/Loading";
|
6
6
|
import getCookie from "./Utils/getCookie";
|
7
7
|
import PrivateRoute from "./hoc/PrivateRoute";
|
8
|
-
|
8
|
+
import checkAccessToken from "./Utils/checkAccessToken";
|
9
|
+
export { AvatarMenu, Footer, AppHOC, AppContext, AppProvider, Loading, getCookie, PrivateRoute, checkAccessToken, };
|