@atomist/automation-client
Version:
Atomist API for software low-level client
18 lines • 647 B
TypeScript
import { GitHubRepoRef } from "../GitHubRepoRef";
import { ProjectOperationCredentials } from "../ProjectOperationCredentials";
import { TargetsParams } from "./TargetsParams";
/**
* Base parameters for working with GitHub repo(s).
* Allows use of regex.
*/
export declare abstract class GitHubTargetsParams extends TargetsParams {
apiUrl: string;
readonly credentials: ProjectOperationCredentials;
/**
* Return a single RepoRef or undefined if we're not identifying a single repo
* @return {RepoRef}
*/
readonly repoRef: GitHubRepoRef;
private githubToken;
}
//# sourceMappingURL=GitHubTargetsParams.d.ts.map