1 | import { OnPullRequest } from "../../typings/types";
|
2 | import { SdmListener } from "./Listener";
|
3 | import { ProjectListenerInvocation } from "./ProjectListener";
|
4 | /**
|
5 | * Invocation for a pull request. The project will be as of the sha of the head
|
6 | * of the pull request
|
7 | */
|
8 | export interface PullRequestListenerInvocation extends ProjectListenerInvocation {
|
9 | pullRequest: OnPullRequest.PullRequest;
|
10 | }
|
11 | export declare type PullRequestListener = SdmListener<PullRequestListenerInvocation>;
|
12 | //# sourceMappingURL=PullRequestListener.d.ts.map |
\ | No newline at end of file |