1 | import * as schema from "../../typings/types";
|
2 | import { IssueListenerInvocation } from "./IssueListenerInvocation";
|
3 | import { SdmListener } from "./Listener";
|
4 | /**
|
5 | * Invoked when an issue has been closed.
|
6 | */
|
7 | export interface ClosedIssueListenerInvocation extends IssueListenerInvocation {
|
8 | issue: schema.OnClosedIssue.Issue;
|
9 | }
|
10 | export declare type ClosedIssueListener = SdmListener<ClosedIssueListenerInvocation>;
|
11 | //# sourceMappingURL=ClosedIssueListener.d.ts.map |
\ | No newline at end of file |