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";