UNPKG

@atomist/sdm

Version:

Atomist Software Delivery Machine SDK

19 lines 640 B
import { Goals } from "../goal/Goals"; import { PushListenerInvocation } from "../listener/PushListener"; import { Mapping } from "./Mapping"; /** * Constant to indicate we should never match. * @type {any} */ export declare const DoNotSetAnyGoals: Goals; /** * Should be used in additive goal setting when no more goals should be scheduled. */ export declare const DoNotSetAnyGoalsAndLock: Goals; /** * Mapper from push to value, id it can be resolved. * This is a central interface used throughout the SDM. */ export interface PushMapping<V> extends Mapping<PushListenerInvocation, V> { } //# sourceMappingURL=PushMapping.d.ts.map