1 | import { ProjectReview } from "@atomist/automation-client/lib/operations/review/ReviewResult";
|
2 | import { PushImpactResponse } from "../registration/PushImpactListenerRegistration";
|
3 | import { SdmListener } from "./Listener";
|
4 | import { PushListenerInvocation } from "./PushListener";
|
5 |
|
6 |
|
7 |
|
8 | export interface ReviewListenerInvocation extends PushListenerInvocation {
|
9 | |
10 |
|
11 |
|
12 | review: ProjectReview;
|
13 | }
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 | export declare type ReviewListener = SdmListener<ReviewListenerInvocation, void | PushImpactResponse>;
|
20 |
|
\ | No newline at end of file |