UNPKG

gitlab

Version:

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

9 lines (8 loc) 541 B
import { BaseService, BaseRequestOptions, Sudo } from '../infrastructure'; import { ProjectId, SupportedService } from '.'; declare class Services extends BaseService { edit(projectId: ProjectId, serviceName: SupportedService, options?: BaseRequestOptions): Promise<object>; remove(projectId: ProjectId, serviceName: SupportedService, options?: Sudo): Promise<object>; show(projectId: ProjectId, serviceName: SupportedService, options?: Sudo): Promise<import("../infrastructure").GetResponse>; } export default Services;