UNPKG

1.02 kBTypeScriptView Raw
1import { BaseService, Sudo, BaseRequestOptions } from '../infrastructure';
2export declare class Repositories extends BaseService {
3 compare(projectId: string | number, from: string, to: string, options?: Sudo): Promise<import("../infrastructure").GetResponse>;
4 contributors(projectId: string | number, options?: Sudo): Promise<import("../infrastructure").GetResponse>;
5 mergeBase(projectId: string | number, refs: string[], options?: Sudo): Promise<import("../infrastructure").GetResponse>;
6 showArchive(projectId: string | number, options?: {
7 sha: string;
8 } & Sudo): Promise<import("../infrastructure").GetResponse>;
9 showBlob(projectId: string | number, sha: string, options?: Sudo): Promise<import("../infrastructure").GetResponse>;
10 showBlobRaw(projectId: string | number, sha: string, options?: Sudo): Promise<import("../infrastructure").GetResponse>;
11 tree(projectId: string | number, options?: BaseRequestOptions): Promise<import("../infrastructure").GetResponse>;
12}