import { EventFired, HandlerContext, HandlerResult } from "@atomist/automation-client"; import { HandleEvent } from "@atomist/automation-client/lib/HandleEvent"; import { CredentialsResolver, GoalCompletionListener, PreferenceStoreFactory, RepoRefResolver, SoftwareDeliveryMachineConfiguration } from "@atomist/sdm"; import { OnAnyCompletedSdmGoal } from "../../../../typings/types"; /** * Respond to a failure or success status by running listeners */ export declare class RespondOnGoalCompletion implements HandleEvent { private readonly repoRefResolver; private readonly credentialsFactory; private readonly goalCompletionListeners; private readonly preferenceStoreFactory; configuration: SoftwareDeliveryMachineConfiguration; constructor(repoRefResolver: RepoRefResolver, credentialsFactory: CredentialsResolver, goalCompletionListeners: GoalCompletionListener[], preferenceStoreFactory: PreferenceStoreFactory); handle(event: EventFired, context: HandlerContext): Promise; } //# sourceMappingURL=RespondOnGoalCompletion.d.ts.map