WizardConnect/packages/react/src/index.ts
Dagur Valberg Johannsson 8cd22c34ba
Add session persistence and refactor dapp manager
Keep session persistance by default, such that when reloading a dapp,
the wizardconnect session is kept alive.

Improve signature request interface. Simplify the react API.
2026-04-03 17:11:18 +02:00

16 lines
713 B
TypeScript

// Copyright (C) 2026 Whiterun LLC,
// This software is licensed under the GNU Lesser General Public License (LGPL), version 3.0 or later.
// A copy of the license can be found in the LICENSE file or at https://www.gnu.org/licenses/lgpl-3.0.html
export { WizardConnectQRDialog } from "./components/WizardConnectQRDialog.js";
export { AlphanumericQRCode } from "./components/AlphanumericQRCode.js";
export { useWizardConnect } from "./hooks/useWizardConnect.js";
export type {
WizardConnectQRDialogProps,
WizardConnectQRTheme,
AlphanumericQRCodeProps,
UseWizardConnectOptions,
UseWizardConnectResult,
WizardConnectState,
} from "./types.js";
export type { SessionStorage } from "@wizardconnect/dapp";