@atomist/sdm
Version:
Atomist Software Delivery Machine SDK
16 lines • 472 B
TypeScript
import { SoftwareDeliveryMachine } from "../machine/SoftwareDeliveryMachine";
import { AddressChannels } from "./addressChannels";
/**
* Context allowing us to communicate with an admin
*/
export interface AdminCommunicationContext {
/**
* Address the admin of this SDM
*/
addressAdmin: AddressChannels;
/**
* The SDM that is currently running
*/
sdm: SoftwareDeliveryMachine;
}
//# sourceMappingURL=AdminCommunicationContext.d.ts.map