import { IssueClient } from "https://deno.land/x/kd_clients@v1.0.0-preview.14/GitHubClients/mod.ts";
Provides a client for interacting with issues.
Constructors
Initializes a new instance of the IssueClient class.
Properties
Methods
Gets the given page of issues where the page quantity matches the given qtyPerPage, in a repository with a name that matches the given IssueClient.repoName, with the given issue state, labels, and in a milestone with a number that matches the given milestoneNumber.
Checks if an issue with the given issueNumber exists with the given state in a repository with a name that matches the given IssueClient.repoName.
Adds the given label to an issue that matches the given issueNumber in a repository with a name that matches the given IssueClient.repoName.
Returns a value indicating whether or not a closed issue with the given issueNumber exists in a repository with a name that matches the given IssueClient.repoName.
Returns a value indicating whether or not an issue with the given issueNumber exists regardless of its state, in a repository with a name that matches the given IssueClient.repoName.
Gets all of the closed issues in a repository with a name that matches the given IssueClient.repoName.
Gets all of the open issues in a repository with a name that matches the given IssueClient.repoName.
Gets an issue with the given issueNumber from a repository with a name that matches given IssueClient.repoName.
Gets the given page of issues where the page quantity matches the given qtyPerPage, in a repository with a name that matches the given IssueClient.repoName, with the given issue state, labels, and in a milestone with a number that matches the given milestoneNumber.
Gets all of the labels for an issue that matches the given issueNumber in a repository with a name that matches the given IssueClient.repoName.
Returns a value indicating whether or not an open issue with the given issueNumber exists in a repository with a name that matches the given IssueClient.repoName.
Updates an issue with the given issueNumber and issueData, in a repository with a name that matches the given IssueClient.repoName.