gitlab
Version:
Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.
11 lines (10 loc) • 351 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const infrastructure_1 = require("../infrastructure");
class Keys extends infrastructure_1.BaseService {
show(keyId) {
const kId = encodeURIComponent(keyId);
return infrastructure_1.RequestHelper.get(this, `keys/${kId}`);
}
}
exports.default = Keys;