import { HttpMethod, HttpOptions, HttpResponse } from "./types.js"; import { HttpBase, InternalJsonUnsafeOptions } from "./http.js"; import { RetryObject } from "got"; //#region lib/util/http/gitlab.d.ts declare const setBaseUrl: (url: string) => void; interface GitlabHttpOptions extends HttpOptions { paginate?: boolean; } declare class GitlabHttp extends HttpBase { protected get baseUrl(): string | undefined; constructor(type?: string, options?: GitlabHttpOptions); protected extraOptions(): readonly string[]; protected requestJsonUnsafe(method: HttpMethod, options: InternalJsonUnsafeOptions): Promise>; protected handleError(url: string | URL, _httpOptions: HttpOptions, err: Error): never; protected calculateRetryDelay(retryObject: RetryObject): number; } //#endregion export { GitlabHttp, GitlabHttpOptions, setBaseUrl }; //# sourceMappingURL=gitlab.d.ts.map