UNPKG

gitlab

Version:

Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.

14 lines (13 loc) 913 B
import { BaseService, Sudo, BaseRequestOptions } from '../infrastructure'; import { ProjectId } from '.'; declare class Repositories extends BaseService { compare(projectId: ProjectId, from: string, to: string, options?: Sudo): Promise<import("../infrastructure").GetResponse>; contributors(projectId: ProjectId, options?: Sudo): Promise<import("../infrastructure").GetResponse>; showArchive(projectId: ProjectId, options?: { sha: string; } & Sudo): Promise<import("../infrastructure").GetResponse>; showBlob(projectId: ProjectId, sha: string, options?: Sudo): Promise<import("../infrastructure").GetResponse>; showBlobRaw(projectId: ProjectId, sha: string, options?: Sudo): Promise<import("../infrastructure").GetResponse>; tree(projectId: ProjectId, options?: BaseRequestOptions): Promise<import("../infrastructure").GetResponse>; } export default Repositories;