UNPKG

482 BTypeScriptView Raw
1import { AutomationEventListenerSupport } from "@atomist/automation-client";
2import { SoftwareDeliveryMachine } from "@atomist/sdm";
3/**
4 * AutomationEventListener that notifies the SDM StartupListeners that this SDM has been
5 * successfully started up
6 */
7export declare class InvokeSdmStartupListenersAutomationEventListener extends AutomationEventListenerSupport {
8 private readonly sdm;
9 constructor(sdm: SoftwareDeliveryMachine);
10 startupSuccessful(): Promise<any>;
11}