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 ListLibraryItems} — `instanceId` is injected from the bound Q App. */ export interface ListLibraryItemsRequest extends Omit { } /** * Runtime binding for `qapps:ListLibraryItems`. * * Lists the library items published in the bound app's Q Business application environment instance. Provide the implementation with * `Effect.provide(AWS.QApps.ListLibraryItemsHttp)`. * ### Library Items * **Example:** List Library Items * ```typescript * // init — bind the operation to the Q App * const listLibraryItems = yield* AWS.QApps.ListLibraryItems(app); * * // runtime * const page = yield* listLibraryItems({ limit: 25 }); * console.log(page.libraryItems?.length); * ``` * * @binding */ export interface ListLibraryItems extends Binding.Service Effect.Effect<(request?: ListLibraryItemsRequest) => Effect.Effect>> { } export declare const ListLibraryItems: ListLibraryItems; //# sourceMappingURL=ListLibraryItems.d.ts.map