UNPKG

gitlab

Version:

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

10 lines (9 loc) 313 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const infrastructure_1 = require("../infrastructure"); class Lint extends infrastructure_1.BaseService { lint(content) { return infrastructure_1.RequestHelper.post(this, 'lint', { content }); } } exports.default = Lint;