UNPKG

gitlab

Version:

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

7 lines (6 loc) 291 B
import { BaseService, PaginatedRequestOptions } from '../infrastructure'; import { EventOptions } from '.'; declare class Events extends BaseService { all(options?: PaginatedRequestOptions & EventOptions): Promise<import("../infrastructure").GetResponse>; } export default Events;