UNPKG

@atomist/sdm

Version:

Atomist Software Delivery Machine SDK

14 lines 433 B
import { PushMapping } from "../PushMapping"; import { PushTest } from "../PushTest"; /** * PushMapping that always returns the same value, guarded by a PushTest. * Return undefined if the PushTest doesn't match. */ export interface StaticPushMapping<V> extends PushMapping<V> { readonly pushTest: PushTest; /** * Value we always return */ readonly value: V; } //# sourceMappingURL=StaticPushMapping.d.ts.map