walletkit-web 0.21.3

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.
@@ -0,0 +1,10 @@
1
+ import * as generated from "./generated";
2
+ export type * from "./generated";
3
+ type GeneratedWalletKit = typeof generated;
4
+ /** WalletKit's generated domain interface without its raw runtime hooks. */
5
+ export type WalletKit = Omit<GeneratedWalletKit, "default" | "uniffiInitAsync">;
6
+ /**
7
+ * Loads WalletKit's browser WASM module and returns its generated bindings.
8
+ * Repeated calls share the generated runtime's initialization promise.
9
+ */
10
+ export declare function initializeWalletKit(): Promise<WalletKit>;