@nostr-dev-kit/ndk-mobile
Version:
NDK Mobile
12 lines • 563 B
TypeScript
import type { NDKNutzapMonitor, NDKWallet, NDKWalletBalance } from "@nostr-dev-kit/ndk-wallet";
interface WalletState {
activeWallet: NDKWallet | undefined;
setActiveWallet: (wallet: NDKWallet) => void;
balance: NDKWalletBalance;
setBalance: (balance: NDKWalletBalance) => void;
nutzapMonitor: NDKNutzapMonitor | undefined;
setNutzapMonitor: (monitor: NDKNutzapMonitor) => void;
}
export declare const useWalletStore: import("zustand").UseBoundStore<import("zustand").StoreApi<WalletState>>;
export {};
//# sourceMappingURL=wallet.d.ts.map