UNPKG

683 BTypeScriptView Raw
1import { ProgressLog } from "../../spi/log/ProgressLog";
2import { ParametersInvocation } from "../listener/ParametersInvocation";
3import { PushImpactListenerInvocation } from "../listener/PushImpactListener";
4/**
5 * Code inspections or autofixes may be invoked in response to a push,
6 * or just with Parameters
7 */
8export interface PushAwareParametersInvocation<P> extends ParametersInvocation<P> {
9 /**
10 * The push invocation. Will be undefined if we are not invoked from a push.
11 */
12 push?: PushImpactListenerInvocation;
13 /**
14 * Optional ProgressLog to log to
15 */
16 progressLog?: ProgressLog;
17}
18//# sourceMappingURL=PushAwareParametersInvocation.d.ts.map
\No newline at end of file