UNPKG

cvat-sdk

Version:

CVAT SDK is a Javascript library. It provides you access to Javascript functions and objects that simplify server interaction and provide additional functionality like data validation and serialization.

15 lines (14 loc) 1.31 kB
import type { Configuration } from "./configuration"; import type { RequestArgs } from "./base"; import type { AxiosInstance, AxiosResponse } from 'axios'; import { URL } from 'url'; export declare const DUMMY_BASE_URL = "https://example.com"; export declare const assertParamExists: (functionName: string, paramName: string, paramValue: unknown) => void; export declare const setApiKeyToObject: (object: any, keyParamName: string, configuration?: Configuration) => Promise<void>; export declare const setBasicAuthToObject: (object: any, configuration?: Configuration) => void; export declare const setBearerAuthToObject: (object: any, configuration?: Configuration) => Promise<void>; export declare const setOAuthToObject: (object: any, name: string, scopes: string[], configuration?: Configuration) => Promise<void>; export declare const setSearchParams: (url: URL, ...objects: any[]) => void; export declare const serializeDataIfNeeded: (value: any, requestOptions: any, configuration?: Configuration) => any; export declare const toPathString: (url: URL) => string; export declare const createRequestFunction: (axiosArgs: RequestArgs, globalAxios: AxiosInstance, BASE_PATH: string, configuration?: Configuration) => <T = unknown, R = AxiosResponse<T>>(axios?: AxiosInstance, basePath?: string) => Promise<R>;