From b3cf730d4740a373b17e1f6de4229669f651892f Mon Sep 17 00:00:00 2001 From: Sebastien Guillemot Date: Sun, 16 Mar 2025 08:32:39 +0900 Subject: [PATCH] Add missing exports --- src/index.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/index.ts b/src/index.ts index 5933603..ab62f88 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,4 +3,18 @@ export { QueryClient as CardanoQueryClient, SubmitClient as CardanoSubmitClient, WatchClient as CardanoWatchClient, + ChainPoint as CardanoChainPoint, + Utxo as CardanoUtxo, + TipEvent as CardanoTipEvent, + TxEvent as CardanoTxEvent, + MempoolEvent as CardanoMempoolEvent, + TxHash as CardanoTxHash, + TxCbor as CardanoTxCbor, } from "./cardano.js"; +export type { + ClientBuilderOptions, + GenericTipEvent, + GenericTxEvent, + GenericTxInMempoolEvent, + GenericUtxo, +} from "./common.js";