UNPKG

use-bluesky

Version:

React hooks to interact with the Bluesky API

10 lines (9 loc) 345 B
type UseFollowsProps = { actor?: string; cursor?: string; initialData?: any; limit?: number; refetchOnMount?: boolean; }; export declare const useFollows: (options: UseFollowsProps) => import("@tanstack/react-query").DefinedUseInfiniteQueryResult<import("@tanstack/query-core").InfiniteData<any, unknown>, Error>; export {};