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