@mindly/ui-components 6.6.4-dev.3 → 6.6.4-dev.6
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.
|
@@ -7,6 +7,7 @@ type AuthProviderProps = {
|
|
|
7
7
|
* REMOVE WHEN WE MOVE AUTH TO NATIVE CAPACITOR PLUGIN
|
|
8
8
|
*/
|
|
9
9
|
webAuthListener?: (callback: (user: User | null) => void) => () => void;
|
|
10
|
+
logMethod: (message: string) => void;
|
|
10
11
|
};
|
|
11
12
|
export declare const AuthProvider: FC<AuthProviderProps>;
|
|
12
13
|
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -2303,6 +2303,7 @@ type AuthProviderProps = {
|
|
|
2303
2303
|
* REMOVE WHEN WE MOVE AUTH TO NATIVE CAPACITOR PLUGIN
|
|
2304
2304
|
*/
|
|
2305
2305
|
webAuthListener?: (callback: (user: User | null) => void) => () => void;
|
|
2306
|
+
logMethod: (message: string) => void;
|
|
2306
2307
|
};
|
|
2307
2308
|
declare const AuthProvider: FC<AuthProviderProps>;
|
|
2308
2309
|
|