@gitbeaker/browser
Version:
Full Browser implementation of the GitLab API. Supports Promises, Async/Await.
12 lines (11 loc) • 492 B
TypeScript
import { Service, DefaultRequestOptions } from '@gitbeaker/requester-utils';
export declare function defaultRequest(service: Service, options?: DefaultRequestOptions): {
headers: Headers;
};
export declare function processBody(response: any): any;
export declare function handler(endpoint: any, options: any): Promise<{
body: any;
headers: Record<string, string>;
status: any;
}>;
export declare const Requester: import("@gitbeaker/requester-utils").RequesterType;