UNPKG

533 BTypeScriptView Raw
1import { OnPullRequest } from "../../typings/types";
2import { SdmListener } from "./Listener";
3import { 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 */
8export interface PullRequestListenerInvocation extends ProjectListenerInvocation {
9 pullRequest: OnPullRequest.PullRequest;
10}
11export declare type PullRequestListener = SdmListener<PullRequestListenerInvocation>;
12//# sourceMappingURL=PullRequestListener.d.ts.map
\No newline at end of file