use-bluesky
Version:
React hooks to interact with the Bluesky API
11 lines (10 loc) • 427 B
TypeScript
import { PropsWithChildren } from 'react';
import { QueryClient } from '@tanstack/react-query';
type BlueskyProviderProps = PropsWithChildren & {
baseUrl?: string;
queryClient?: QueryClient;
session?: any;
token?: string;
};
export declare const BlueskyProvider: ({ children, baseUrl, queryClient: queryClientProp, session, token, }: BlueskyProviderProps) => import("react/jsx-runtime").JSX.Element;
export {};