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 BatchCreateCategory} — `instanceId` is injected from the bound Q App. */ export interface BatchCreateCategoryRequest extends Omit { } /** * Runtime binding for `qapps:BatchCreateCategory`. * * Creates library categories that web-experience users use to tag and filter library items. Provide the implementation with * `Effect.provide(AWS.QApps.BatchCreateCategoryHttp)`. * ### Categories * **Example:** Create Categories * ```typescript * // init — bind the operation to the Q App * const batchCreateCategory = yield* AWS.QApps.BatchCreateCategory(app); * * // runtime * yield* batchCreateCategory({ * categories: [{ title: "HR" }, { title: "Marketing" }], * }); * ``` * * @binding */ export interface BatchCreateCategory extends Binding.Service Effect.Effect<(request: BatchCreateCategoryRequest) => Effect.Effect>> { } export declare const BatchCreateCategory: BatchCreateCategory; //# sourceMappingURL=BatchCreateCategory.d.ts.map