* Create a new Issue wrapper * @param {string} user - the user who owns the repository * @param {string} repo - the name of the repository * @return {Issue}
(user, repo)
| 86 | * @return {Issue} |
| 87 | */ |
| 88 | getIssues(user, repo) { |
| 89 | return new Issue(this._getFullName(user, repo), this.__auth, this.__apiBase); |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * Create a new Search wrapper |
no test coverage detected