UNPKG

use-bluesky

Version:

React hooks to interact with the Bluesky API

8 lines (7 loc) 254 B
type UseSearchActorProps = { cursor?: string; limit: number; search: string; }; export declare const useSearchActors: ({ cursor, limit, search, }: UseSearchActorProps) => import("@tanstack/react-query").UseQueryResult<any, Error>; export {};