@particle-network/connectkit
Version:
10 lines (9 loc) • 331 B
TypeScript
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 {};