bigblocks
Version:
Complete Bitcoin UI component library - authentication, social, wallet, market, inscriptions, and blockchain interactions for React
18 lines • 496 B
TypeScript
import type { Friend } from "bmap-api-types";
import type { SocialError } from "../types/social.js";
export interface FriendRequest {
bapId: string;
txid: string;
height: number;
}
interface UseFriendsResult {
friends: Friend[];
incoming: FriendRequest[];
outgoing: FriendRequest[];
isLoading: boolean;
error: SocialError | null;
refetch: () => void;
}
export declare function useFriends(): UseFriendsResult;
export {};
//# sourceMappingURL=useFriends.d.ts.map