/** * @import { TxId, TxInput } from "../index.js" */ export class UtxoAlreadySpentError extends Error { /** * @param {TxInput} utxo * @param {TxId | undefined} consumedBy */ constructor(utxo: TxInput, consumedBy?: TxId | undefined); /** * @readonly * @type {TxInput} */ readonly utxo: TxInput; /** * @readonly * @type {TxId | undefined} */ readonly consumedBy: TxId | undefined; } import type { TxInput } from "../index.js"; import type { TxId } from "../index.js"; //# sourceMappingURL=UtxoAlreadySpentError.d.ts.map