1 | import { ProjectOperationCredentials } from "@atomist/automation-client/lib/operations/common/ProjectOperationCredentials";
|
2 | import { RepoFilter } from "@atomist/automation-client/lib/operations/common/repoFilter";
|
3 | import { RemoteRepoRef } from "@atomist/automation-client/lib/operations/common/RepoId";
|
4 | import { ValidationError, ValidationResult } from "@atomist/automation-client/lib/SmartParameters";
|
5 |
|
6 |
|
7 |
|
8 | export interface RepoTargets {
|
9 | |
10 |
|
11 |
|
12 | repoRef: RemoteRepoRef;
|
13 | credentials: ProjectOperationCredentials;
|
14 | |
15 |
|
16 |
|
17 |
|
18 |
|
19 | test: RepoFilter;
|
20 | |
21 |
|
22 |
|
23 | bindAndValidate(): ValidationResult;
|
24 | }
|
25 | export declare function isValidationError(vr: ValidationResult): vr is ValidationError;
|
26 |
|
\ | No newline at end of file |