UNPKG

gitlab

Version:

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

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