bigblocks
Version:
Complete Bitcoin UI component library - authentication, social, wallet, market, inscriptions, and blockchain interactions for React
14 lines • 502 B
TypeScript
import type { BapIdentity } from "bmap-api-types";
import type { SocialError } from "../types/social.js";
interface UseFriendRequestsResult {
requests: BapIdentity[];
sentRequests: BapIdentity[];
isLoading: boolean;
error: SocialError | null;
acceptRequest: (idKey: string) => void;
rejectRequest: (idKey: string) => void;
refetch: () => void;
}
export declare function useFriendRequests(): UseFriendRequestsResult;
export {};
//# sourceMappingURL=useFriendRequests.d.ts.map