@steroidsjs/core 2.2.90 → 2.2.91
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/actions/auth.d.ts +1 -1
- package/package.json +1 -1
package/actions/auth.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export declare const AUTH_SET_DATA = "AUTH_SET_DATA";
|
|
|
4
4
|
export declare const AUTH_ADD_SOCIAL = "AUTH_ADD_SOCIAL";
|
|
5
5
|
export declare const init: (skipInitialized?: boolean) => (dispatch: any, getState: any) => any;
|
|
6
6
|
export declare const reInit: () => (dispatch: any, getState: any) => any;
|
|
7
|
-
export declare const login: (token: any, redirectPageId
|
|
7
|
+
export declare const login: (token: any, redirectPageId?: string | boolean, params?: any) => (dispatch: any, getState: any, { http }: {
|
|
8
8
|
http: any;
|
|
9
9
|
}) => any;
|
|
10
10
|
export declare const addSocial: (social: any) => {
|