UNPKG

gitlab

Version:

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

7 lines (6 loc) 307 B
import { BaseService, Sudo, BaseRequestOptions } from '../infrastructure'; declare class ApplicationSettings extends BaseService { all(options?: Sudo): Promise<import("../infrastructure").GetResponse>; edit(options?: BaseRequestOptions): Promise<object>; } export default ApplicationSettings;