Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@kaos/dashboard / dist / esm / models / api / api.d.ts
Size: Mime:
import type { ApiOptions } from './api.types';
export declare const backendAxiosInstance: import("axios").AxiosInstance;
export declare function getApiOptions(options?: ApiOptions): {
    apiBasePath: string;
    fetcher: (url: string) => Promise<any>;
    apiFetcher: (apiPath: string) => Promise<any>;
    useApi: (path: import("./api.types").ApiPath, params?: Record<string, any> | undefined, options?: Partial<import("swr/dist/types").PublicConfiguration<any, any, import("swr").BareFetcher<any>>> | undefined) => import("./api.types").UseApiResults;
    axiosInstance: import("axios").AxiosInstance;
};