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 DisassociateLibraryItemReview} — `instanceId` is injected from the bound Q App. */ export interface DisassociateLibraryItemReviewRequest extends Omit { } /** * Runtime binding for `qapps:DisassociateLibraryItemReview`. * * Removes the calling identity's upvote from a library item. Provide the implementation with * `Effect.provide(AWS.QApps.DisassociateLibraryItemReviewHttp)`. * ### Library Items * **Example:** Remove an Upvote * ```typescript * // init — bind the operation to the Q App * const disassociateLibraryItemReview = yield* AWS.QApps.DisassociateLibraryItemReview(app); * * // runtime * yield* disassociateLibraryItemReview({ libraryItemId }); * ``` * * @binding */ export interface DisassociateLibraryItemReview extends Binding.Service Effect.Effect<(request: DisassociateLibraryItemReviewRequest) => Effect.Effect>> { } export declare const DisassociateLibraryItemReview: DisassociateLibraryItemReview; //# sourceMappingURL=DisassociateLibraryItemReview.d.ts.map