UNPKG

gitlab

Version:

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

11 lines (10 loc) 683 B
import { BaseRequestOptions, BaseService, PaginatedRequestOptions } from '../infrastructure'; import { BroadcastMessageId } from '.'; declare class BroadcastMessages extends BaseService { all(options?: PaginatedRequestOptions): Promise<import("../infrastructure").GetResponse>; create(options?: BaseRequestOptions): Promise<object>; edit(broadcastMessageId: BroadcastMessageId, options?: BaseRequestOptions): Promise<object>; remove(broadcastMessageId: BroadcastMessageId): Promise<object>; show(broadcastMessageId: BroadcastMessageId, options?: BaseRequestOptions): Promise<import("../infrastructure").GetResponse>; } export default BroadcastMessages;