import type * as S3 from "@distilled.cloud/aws/s3"; import type * as Effect from "effect/Effect"; import * as Binding from "../Binding.ts"; import type { RuntimeContext } from "../RuntimeContext.ts"; import type { Bucket } from "./Bucket.ts"; import type { TigrisCredentialsMissing } from "./Errors.ts"; export interface HeadObjectRequest extends Omit { } /** * Runtime binding for Tigris `HeadObject` over the S3 API. * * Bind this operation to a {@link Bucket} in Service init. Provide * {@link HeadObjectHttp}. * * * ### Inspecting Objects * **Example:** Check an Object's Metadata * ```typescript * const headObject = yield* Fly.HeadObject(Data); * const head = yield* headObject({ Key: "hello.txt" }); * ``` * * @binding */ export interface HeadObject extends Binding.Service Effect.Effect<(request: HeadObjectRequest) => Effect.Effect>> { } export declare const HeadObject: HeadObject; //# sourceMappingURL=HeadObject.d.ts.map