renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
13 lines (12 loc) • 630 B
TypeScript
import { HttpBase, type InternalJsonUnsafeOptions } from './http';
import type { HttpMethod, HttpOptions, HttpResponse } from './types';
export declare const setBaseUrl: (url: string) => void;
export interface BitbucketServerHttpOptions extends HttpOptions {
paginate?: boolean;
limit?: number;
}
export declare class BitbucketServerHttp extends HttpBase<BitbucketServerHttpOptions> {
protected get baseUrl(): string | undefined;
constructor(options?: HttpOptions);
protected requestJsonUnsafe<T>(method: HttpMethod, options: InternalJsonUnsafeOptions<BitbucketServerHttpOptions>): Promise<HttpResponse<T>>;
}