@atomist/sdm
Version:
Atomist Software Delivery Machine SDK
15 lines • 402 B
TypeScript
import { PushTest } from "../mapping/PushTest";
/**
* Extended by any object that can react to a subset of pushes.
*/
export interface PushSelector {
name: string;
pushTest?: PushTest;
}
/**
* Superclass for registering actions or listeners associated with a push
*/
export interface PushRegistration<A> extends PushSelector {
action: A;
}
//# sourceMappingURL=PushRegistration.d.ts.map