UNPKG

gitlab

Version:

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

6 lines (5 loc) 184 B
import { BaseService, Sudo } from '../infrastructure'; declare class Lint extends BaseService { lint(content: string, options?: Sudo): Promise<object>; } export default Lint;