UNPKG

use-bluesky

Version:

React hooks to interact with the Bluesky API

12 lines (11 loc) 267 B
type UseFollowProps = { did: string; onSuccess: () => void; followUri: string; }; export declare const useFollow: ({ did, onSuccess, followUri }: UseFollowProps) => { follow: () => void; isPending: boolean; unfollow: () => void; }; export {};