@privy-io/react-auth 1.19.1-beta.1 → 1.20.0-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 +230 -150
- package/dist/index.d.ts +1 -0
- package/dist/index.js +230 -150
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -638,6 +638,7 @@ interface PrivyInterface {
|
|
|
638
638
|
* This function currently has a precondition that the user has a Privy wallet. It will fail otherwise.
|
|
639
639
|
*/
|
|
640
640
|
signMessage: (message: string, data?: SignMessageModalUIOptions) => Promise<string>;
|
|
641
|
+
exportWallet: () => Promise<void>;
|
|
641
642
|
}
|
|
642
643
|
/**
|
|
643
644
|
* [React Hook](https://reactjs.org/docs/hooks-intro.html) that allows you to manage the user's current authentication state and access their linked accounts.
|