UNPKG

gitlab

Version:

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

11 lines (10 loc) 705 B
import { BaseRequestOptions, BaseService, PaginatedRequestOptions, Sudo } from '../infrastructure'; import { ProjectId } from '.'; declare class Releases extends BaseService { all(projectId: ProjectId, options?: PaginatedRequestOptions): Promise<import("../infrastructure").GetResponse>; create(projectId: ProjectId, options?: BaseRequestOptions): Promise<object>; edit(projectId: ProjectId, tagName: string, options?: BaseRequestOptions): Promise<object>; remove(projectId: ProjectId, tagName: string, options?: Sudo): Promise<object>; show(projectId: ProjectId, tagName: string, options?: Sudo): Promise<import("../infrastructure").GetResponse>; } export default Releases;