UNPKG

react-virtual-tryon

Version:

## **Introduction**

9 lines (8 loc) 393 B
import { QueryClient, QueryFunction } from "@tanstack/react-query"; export declare function apiRequest(method: string, url: string, data?: FormData | object): Promise<Response>; type UnauthorizedBehavior = "returnNull" | "throw"; export declare const getQueryFn: <T>(options: { on401: UnauthorizedBehavior; }) => QueryFunction<T>; export declare const queryClient: QueryClient; export {};