UNPKG

588 BTypeScriptView Raw
1import { OnBuildComplete } from "../../typings/types";
2import { RepoListenerInvocation, SdmListener } from "./Listener";
3import 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 */
9export interface BuildListenerInvocation extends RepoListenerInvocation {
10 /**
11 * Build that has just completed.
12 */
13 build: Build;
14}
15export declare type BuildListener = SdmListener<BuildListenerInvocation>;
16//# sourceMappingURL=BuildListener.d.ts.map
\No newline at end of file