UNPKG

@particle-network/connectkit

Version:
10 lines (9 loc) 331 B
import type { SmartAccount } from '@particle-network/aa-plugin'; type State = { smartAccount: SmartAccount | null; }; type Actions = { setSmartAccount: (smartAccount: SmartAccount | null) => void; }; export declare const useAAPlugin: import("zustand").UseBoundStore<import("zustand").StoreApi<State & Actions>>; export {};