gitlab
Version:
Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.
10 lines (9 loc) • 324 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const templates_1 = require("../templates");
class ProjectSnippetDiscussions extends templates_1.ResourceDiscussions {
constructor(options) {
super('projects', 'snippets', options);
}
}
exports.default = ProjectSnippetDiscussions;