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 DeleteLibraryItem} — `instanceId` is injected from the bound Q App. */ export interface DeleteLibraryItemRequest extends Omit { } /** * Runtime binding for `qapps:DeleteLibraryItem`. * * Unpublishes a library item, removing the app from the instance's library. Provide the implementation with * `Effect.provide(AWS.QApps.DeleteLibraryItemHttp)`. * ### Library Items * **Example:** Delete a Library Item * ```typescript * // init — bind the operation to the Q App * const deleteLibraryItem = yield* AWS.QApps.DeleteLibraryItem(app); * * // runtime * yield* deleteLibraryItem({ libraryItemId }); * ``` * * @binding */ export interface DeleteLibraryItem extends Binding.Service Effect.Effect<(request: DeleteLibraryItemRequest) => Effect.Effect>> { } export declare const DeleteLibraryItem: DeleteLibraryItem; //# sourceMappingURL=DeleteLibraryItem.d.ts.map