UNPKG

gitlab

Version:

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

11 lines (10 loc) 979 B
import { BaseRequestOptions, BaseService, PaginatedRequestOptions } from '../infrastructure'; import { ProjectId, PipelineScheduleId, KeyId } from '.'; declare class PipelineScheduleVariables extends BaseService { all(projectId: ProjectId, pipelineScheduleId: PipelineScheduleId, options?: PaginatedRequestOptions): Promise<import("../infrastructure").GetResponse>; create(projectId: ProjectId, pipelineScheduleId: PipelineScheduleId, options?: BaseRequestOptions): Promise<object>; edit(projectId: ProjectId, pipelineScheduleId: PipelineScheduleId, keyId: KeyId, options?: BaseRequestOptions): Promise<object>; show(projectId: ProjectId, pipelineScheduleId: PipelineScheduleId, keyId: KeyId, options?: BaseRequestOptions): Promise<import("../infrastructure").GetResponse>; remove(projectId: ProjectId, pipelineScheduleId: PipelineScheduleId, keyId: KeyId, options?: BaseRequestOptions): Promise<object>; } export default PipelineScheduleVariables;