import * as omics from "@distilled.cloud/aws/omics"; import * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { ReferenceStore } from "./ReferenceStore.ts"; export interface DeleteReferenceRequest extends Omit { } /** * Runtime binding for `omics:DeleteReference`. * * Bind this operation to a `ReferenceStore` to get a callable that deletes a reference genome from the store — the * store/workflow id is injected automatically and the action is granted on the * bound resource. Provide the implementation with * `Effect.provide(AWS.Omics.DeleteReferenceHttp)`. * ### References * **Example:** Bind DeleteReference to a ReferenceStore * ```typescript * // init * const deleteReference = yield* AWS.Omics.DeleteReference(store); * // runtime * const result = yield* deleteReference({}); * ``` * * @binding */ export interface DeleteReference extends Binding.Service Effect.Effect<(request?: DeleteReferenceRequest) => Effect.Effect>> { } export declare const DeleteReference: DeleteReference; //# sourceMappingURL=DeleteReference.d.ts.map