aws-delivlib
Version:
A fabulous library for defining continuous pipelines for building, testing and releasing code libraries.
15 lines (14 loc) • 491 B
TypeScript
import { ChimeNotifierOptions, IPipelineNotification, PipelineNotificationBindOptions } from '../';
/**
* Properties to initialize ChimeNotification
*/
export interface ChimeNotificationProps extends ChimeNotifierOptions {
}
/**
* Notify events on pipeline to a Chime room.
*/
export declare class ChimeNotification implements IPipelineNotification {
private readonly props;
constructor(props: ChimeNotificationProps);
bind(options: PipelineNotificationBindOptions): void;
}