@atomist/automation-client
Version:
Atomist API for software low-level client
10 lines • 308 B
TypeScript
import { Changes } from "./Changes";
/**
* Performs some side effect based on the compared fingerprints and diff
* @param <F> fingerprint format
* @param <D> diff format
*/
export interface Action<F, D extends Changes> {
invoke(base: F, head: F, diff: D): void;
}
//# sourceMappingURL=Action.d.ts.map