UNPKG

gitlab

Version:

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

8 lines (7 loc) 419 B
import { BaseService, PaginatedRequestOptions, Sudo } from '../infrastructure'; import { ProjectId, DeploymentId } from '.'; declare class Deployments extends BaseService { all(projectId: ProjectId, options?: PaginatedRequestOptions): Promise<import("../infrastructure").GetResponse>; show(projectId: ProjectId, deploymentId: DeploymentId, options?: Sudo): Promise<object>; } export default Deployments;