/** * @since 2.0.0 */ import { Effect } from "effect"; import * as CML from "@anastasia-labs/cardano-multiplatform-lib-nodejs"; /** * Type alias for the CML ScriptAll class * * @since 2.0.0 * @category Types */ export type ScriptAll = CML.ScriptAll; declare const ScriptAllError_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: "ScriptAllError"; } & Readonly; /** * Error class for ScriptAll operations * * This error is thrown when operations on ScriptAll instances fail. * * @since 2.0.0 * @category Errors */ export declare class ScriptAllError extends ScriptAllError_base<{ message?: string; }> { } /** * Method free of ScriptAll * * @since 2.0.0 * @category Methods */ export declare const free: (instance: CML.ScriptAll) => Effect.Effect; /** * Unsafely calls instance.free without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const freeUnsafe: (instance: CML.ScriptAll) => void; /** * Method toCborBytes of ScriptAll * * @since 2.0.0 * @category Methods */ export declare const toCborBytes: (instance: CML.ScriptAll) => Effect.Effect; /** * Unsafely calls instance.toCborBytes without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const toCborBytesUnsafe: (instance: CML.ScriptAll) => Uint8Array; /** * Method toCanonicalCborBytes of ScriptAll * * @since 2.0.0 * @category Methods */ export declare const toCanonicalCborBytes: (instance: CML.ScriptAll) => Effect.Effect; /** * Unsafely calls instance.toCanonicalCborBytes without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const toCanonicalCborBytesUnsafe: (instance: CML.ScriptAll) => Uint8Array; /** * Static method fromCborBytes of ScriptAll * * @since 2.0.0 * @category Constructors */ export declare const fromCborBytes: (cborBytes: Uint8Array) => Effect.Effect; /** * Unsafely calls ScriptAll.fromCborBytes without Effect wrapper * * @since 2.0.0 * @category ConstructorsUnsafe */ export declare const fromCborBytesUnsafe: (cborBytes: Uint8Array) => CML.ScriptAll; /** * Method toCborHex of ScriptAll * * @since 2.0.0 * @category Methods */ export declare const toCborHex: (instance: CML.ScriptAll) => Effect.Effect; /** * Unsafely calls instance.toCborHex without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const toCborHexUnsafe: (instance: CML.ScriptAll) => string; /** * Method toCanonicalCborHex of ScriptAll * * @since 2.0.0 * @category Methods */ export declare const toCanonicalCborHex: (instance: CML.ScriptAll) => Effect.Effect; /** * Unsafely calls instance.toCanonicalCborHex without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const toCanonicalCborHexUnsafe: (instance: CML.ScriptAll) => string; /** * Static method fromCborHex of ScriptAll * * @since 2.0.0 * @category Constructors */ export declare const fromCborHex: (cborBytes: string) => Effect.Effect; /** * Unsafely calls ScriptAll.fromCborHex without Effect wrapper * * @since 2.0.0 * @category ConstructorsUnsafe */ export declare const fromCborHexUnsafe: (cborBytes: string) => CML.ScriptAll; /** * Method toJson of ScriptAll * * @since 2.0.0 * @category Methods */ export declare const toJson: (instance: CML.ScriptAll) => Effect.Effect; /** * Unsafely calls instance.toJson without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const toJsonUnsafe: (instance: CML.ScriptAll) => string; /** * Method toJsValue of ScriptAll * * @since 2.0.0 * @category Methods */ export declare const toJsValue: (instance: CML.ScriptAll) => Effect.Effect; /** * Unsafely calls instance.toJsValue without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const toJsValueUnsafe: (instance: CML.ScriptAll) => any; /** * Static method fromJson of ScriptAll * * @since 2.0.0 * @category Constructors */ export declare const fromJson: (json: string) => Effect.Effect; /** * Unsafely calls ScriptAll.fromJson without Effect wrapper * * @since 2.0.0 * @category ConstructorsUnsafe */ export declare const fromJsonUnsafe: (json: string) => CML.ScriptAll; /** * Method nativeScripts of ScriptAll * * @since 2.0.0 * @category Methods */ export declare const nativeScripts: (instance: CML.ScriptAll) => Effect.Effect; /** * Unsafely calls instance.nativeScripts without Effect wrapper * * @since 2.0.0 * @category MethodsUnsafe */ export declare const nativeScriptsUnsafe: (instance: CML.ScriptAll) => CML.NativeScriptList; /** * Static method _new of ScriptAll * * @since 2.0.0 * @category Constructors */ export declare const _new: (nativeScripts: CML.NativeScriptList) => Effect.Effect; /** * Unsafely calls ScriptAll._new without Effect wrapper * * @since 2.0.0 * @category ConstructorsUnsafe */ export declare const _newUnsafe: (nativeScripts: CML.NativeScriptList) => CML.ScriptAll; export {}; //# sourceMappingURL=ScriptAll.d.ts.map