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 DisassociateQAppFromUser} — `instanceId` and `appId` are injected from the bound Q App. */ export interface DisassociateQAppFromUserRequest extends Omit { } /** * Runtime binding for `qapps:DisassociateQAppFromUser`. * * Removes the bound Q App from the calling identity's inventory of favorited apps. Provide the implementation with * `Effect.provide(AWS.QApps.DisassociateQAppFromUserHttp)`. * ### User Inventory * **Example:** Unfavorite the App * ```typescript * // init — bind the operation to the Q App * const disassociateQAppFromUser = yield* AWS.QApps.DisassociateQAppFromUser(app); * * // runtime * yield* disassociateQAppFromUser(); * ``` * * @binding */ export interface DisassociateQAppFromUser extends Binding.Service Effect.Effect<(request?: DisassociateQAppFromUserRequest) => Effect.Effect>> { } export declare const DisassociateQAppFromUser: DisassociateQAppFromUser; //# sourceMappingURL=DisassociateQAppFromUser.d.ts.map