import type * as qapps from "@distilled.cloud/aws/qapps"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { QApp } from "./QApp.ts"; /** * Request for {@link AssociateLibraryItemReview} — `instanceId` is injected from the bound Q App. */ export interface AssociateLibraryItemReviewRequest extends Omit { } /** * Runtime binding for `qapps:AssociateLibraryItemReview`. * * Upvotes a library item as the calling identity. Provide the implementation with * `Effect.provide(AWS.QApps.AssociateLibraryItemReviewHttp)`. * ### Library Items * **Example:** Upvote a Library Item * ```typescript * // init — bind the operation to the Q App * const associateLibraryItemReview = yield* AWS.QApps.AssociateLibraryItemReview(app); * * // runtime * yield* associateLibraryItemReview({ libraryItemId }); * ``` * * @binding */ export interface AssociateLibraryItemReview extends Binding.Service Effect.Effect<(request: AssociateLibraryItemReviewRequest) => Effect.Effect>> { } export declare const AssociateLibraryItemReview: AssociateLibraryItemReview; //# sourceMappingURL=AssociateLibraryItemReview.d.ts.map