import { GitProject, Project } from "@atomist/automation-client"; import { GoalInvocation } from "@atomist/sdm"; import { GoalCache } from "./goalCaching"; /** * Cache implementation that doesn't cache anything and will always trigger the fallback. */ export declare class NoOpGoalCache implements GoalCache { put(gi: GoalInvocation, project: GitProject, files: string[], classifier?: string): Promise; remove(gi: GoalInvocation, classifier?: string): Promise; retrieve(gi: GoalInvocation, project: Project, classifier?: string): Promise; } //# sourceMappingURL=NoOpGoalCache.d.ts.map