@privy-io/react-auth 1.17.0 → 1.17.1-beta.1
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/esm/index.js +27 -27
- package/dist/index.d.ts +7 -4
- package/dist/index.js +38 -38
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -207,14 +207,17 @@ interface PrivyProviderProps {
|
|
|
207
207
|
*
|
|
208
208
|
*/
|
|
209
209
|
onSuccess?: (user: User, isNewUser: boolean) => void;
|
|
210
|
-
/** @ignore */
|
|
211
|
-
children: React.ReactNode;
|
|
212
210
|
/**
|
|
213
211
|
* If true, the user will be prompted to create a Privy wallet
|
|
214
|
-
* after
|
|
215
|
-
* have any wallet associated with their user
|
|
212
|
+
* after successfully logging in, if they do not currently
|
|
213
|
+
* have any wallet associated with their user object.
|
|
216
214
|
*/
|
|
217
215
|
createPrivyWalletOnLogin?: boolean;
|
|
216
|
+
/**
|
|
217
|
+
* @ignore
|
|
218
|
+
* @class
|
|
219
|
+
*/
|
|
220
|
+
children: React.ReactNode;
|
|
218
221
|
}
|
|
219
222
|
/**
|
|
220
223
|
* Passes the Privy authentication context to your React components.
|