import type * as SVC from "@distilled.cloud/aws/codebuild"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Project } from "./Project.ts"; /** * Runtime binding for `codebuild:InvalidateProjectCache` — resets the * bound project's build cache so the next build starts cold. * ### Project Cache * **Example:** Invalidate the Build Cache * ```typescript * const invalidateProjectCache = yield* AWS.CodeBuild.InvalidateProjectCache(project); * * yield* invalidateProjectCache(); * ``` * * @binding */ export interface InvalidateProjectCache extends Binding.Service(project: P) => Effect.Effect<() => Effect.Effect>> { } export declare const InvalidateProjectCache: InvalidateProjectCache; //# sourceMappingURL=InvalidateProjectCache.d.ts.map