UNPKG

823 BTypeScriptView Raw
1import { ProjectOperationCredentials } from "../common/ProjectOperationCredentials";
2import { RemoteRepoRef } from "../common/RepoId";
3import { NewRepoCreationParameters } from "./NewRepoCreationParameters";
4/**
5 * Parameters common to all generators that create new repositories
6 */
7export declare class GitHubRepoCreationParameters extends NewRepoCreationParameters {
8 githubToken: any;
9 webhookUrl: string;
10 apiUrl: string;
11 readonly credentials: ProjectOperationCredentials;
12 /**
13 * Return a single RepoRef or undefined if we're not identifying a single repo
14 * This implementation returns a GitHub.com repo but it can be overriden
15 * to return any kind of repo
16 * @return {RepoRef}
17 */
18 readonly repoRef: RemoteRepoRef;
19}
20//# sourceMappingURL=GitHubRepoCreationParameters.d.ts.map
\No newline at end of file