/** * @since 2.0.0 */ import { Effect } from "effect"; import * as CML from "@anastasia-labs/cardano-multiplatform-lib-nodejs"; /** * Type alias for the CML TransactionUnspentOutput class * * @since 2.0.0 * @category Types */ export type TransactionUnspentOutput = CML.TransactionUnspentOutput; declare const TransactionUnspentOutputError_base: new = {}>(args: import("effect/Types").Equals extends true ? void : { readonly [P in keyof A as P extends "_tag" ? never : P]: A[P]; }) => import("effect/Cause").YieldableError & { readonly _tag: "TransactionUnspentOutputError"; } & Readonly; /** * Error class for TransactionUnspentOutput operations * * This error is thrown when operations on TransactionUnspentOutput instances fail. * * @since 2.0.0 * @category Errors */ export declare class TransactionUnspentOutputError extends TransactionUnspentOutputError_base<{ message?: string; }> { } /** * Method free of TransactionUnspentOutput * * @since 2.0.0 * @category Methods */ export declare const free: (instance: CML.TransactionUnspentOutput) => Effect.Effect; /** * Unsafely calls instance.free without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const freeUnsafe: (instance: CML.TransactionUnspentOutput) => void; /** * Method toCborBytes of TransactionUnspentOutput * * @since 2.0.0 * @category Methods */ export declare const toCborBytes: (instance: CML.TransactionUnspentOutput) => Effect.Effect; /** * Unsafely calls instance.toCborBytes without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const toCborBytesUnsafe: (instance: CML.TransactionUnspentOutput) => Uint8Array; /** * Static method fromCborBytes of TransactionUnspentOutput * * @since 2.0.0 * @category Constructors */ export declare const fromCborBytes: (cborBytes: Uint8Array) => Effect.Effect; /** * Unsafely calls TransactionUnspentOutput.fromCborBytes without Effect wrapper * * @since 2.0.0 * @category ConstructorsUnsafe */ export declare const fromCborBytesUnsafe: (cborBytes: Uint8Array) => CML.TransactionUnspentOutput; /** * Method toCborHex of TransactionUnspentOutput * * @since 2.0.0 * @category Methods */ export declare const toCborHex: (instance: CML.TransactionUnspentOutput) => Effect.Effect; /** * Unsafely calls instance.toCborHex without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const toCborHexUnsafe: (instance: CML.TransactionUnspentOutput) => string; /** * Static method fromCborHex of TransactionUnspentOutput * * @since 2.0.0 * @category Constructors */ export declare const fromCborHex: (cborBytes: string) => Effect.Effect; /** * Unsafely calls TransactionUnspentOutput.fromCborHex without Effect wrapper * * @since 2.0.0 * @category ConstructorsUnsafe */ export declare const fromCborHexUnsafe: (cborBytes: string) => CML.TransactionUnspentOutput; /** * Static method _new of TransactionUnspentOutput * * @since 2.0.0 * @category Constructors */ export declare const _new: (input: CML.TransactionInput, output: CML.TransactionOutput) => Effect.Effect; /** * Unsafely calls TransactionUnspentOutput._new without Effect wrapper * * @since 2.0.0 * @category ConstructorsUnsafe */ export declare const _newUnsafe: (input: CML.TransactionInput, output: CML.TransactionOutput) => CML.TransactionUnspentOutput; /** * Method input of TransactionUnspentOutput * * @since 2.0.0 * @category Methods */ export declare const input: (instance: CML.TransactionUnspentOutput) => Effect.Effect; /** * Unsafely calls instance.input without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const inputUnsafe: (instance: CML.TransactionUnspentOutput) => CML.TransactionInput; /** * Method output of TransactionUnspentOutput * * @since 2.0.0 * @category Methods */ export declare const output: (instance: CML.TransactionUnspentOutput) => Effect.Effect; /** * Unsafely calls instance.output without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const outputUnsafe: (instance: CML.TransactionUnspentOutput) => CML.TransactionOutput; export {}; //# sourceMappingURL=TransactionUnspentOutput.d.ts.map