1 | import { OnBuildComplete } from "../../typings/types";
|
2 | import { RepoListenerInvocation, SdmListener } from "./Listener";
|
3 | import Build = OnBuildComplete.Build;
|
4 | /**
|
5 | * Invocation for a build on a project. Not a part of delivery control:
|
6 | * Purely for observational purposes, such as determining the time
|
7 | * a build took.
|
8 | */
|
9 | export interface BuildListenerInvocation extends RepoListenerInvocation {
|
10 | /**
|
11 | * Build that has just completed.
|
12 | */
|
13 | build: Build;
|
14 | }
|
15 | export declare type BuildListener = SdmListener<BuildListenerInvocation>;
|
16 | //# sourceMappingURL=BuildListener.d.ts.map |
\ | No newline at end of file |