From 8aa568e4af95ac38a7a92b948fc8f79d5843348c Mon Sep 17 00:00:00 2001 From: willclarktech Date: Tue, 28 Jul 2020 18:34:24 +0200 Subject: [PATCH] launchpad: Add type exports to index --- packages/launchpad/src/index.ts | 10 +++++++++- packages/launchpad/types/index.d.ts | 10 +++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/packages/launchpad/src/index.ts b/packages/launchpad/src/index.ts index c5b7b3e2..0149c07f 100644 --- a/packages/launchpad/src/index.ts +++ b/packages/launchpad/src/index.ts @@ -89,5 +89,13 @@ export { findSequenceForSignedTx } from "./sequence"; export { encodeSecp256k1Signature, decodeSignature } from "./signature"; export { FeeTable, SigningCosmosClient } from "./signingcosmosclient"; export { isStdTx, pubkeyType, CosmosSdkTx, PubKey, StdFee, StdSignature, StdTx } from "./types"; -export { OfflineSigner, makeCosmoshubPath, executeKdf, KdfConfiguration } from "./wallet"; +export { + AccountData, + Algo, + PrehashType, + OfflineSigner, + makeCosmoshubPath, + executeKdf, + KdfConfiguration, +} from "./wallet"; export { extractKdfConfiguration, Secp256k1Wallet } from "./secp256k1wallet"; diff --git a/packages/launchpad/types/index.d.ts b/packages/launchpad/types/index.d.ts index fd558f55..d8dfe32e 100644 --- a/packages/launchpad/types/index.d.ts +++ b/packages/launchpad/types/index.d.ts @@ -87,5 +87,13 @@ export { findSequenceForSignedTx } from "./sequence"; export { encodeSecp256k1Signature, decodeSignature } from "./signature"; export { FeeTable, SigningCosmosClient } from "./signingcosmosclient"; export { isStdTx, pubkeyType, CosmosSdkTx, PubKey, StdFee, StdSignature, StdTx } from "./types"; -export { OfflineSigner, makeCosmoshubPath, executeKdf, KdfConfiguration } from "./wallet"; +export { + AccountData, + Algo, + PrehashType, + OfflineSigner, + makeCosmoshubPath, + executeKdf, + KdfConfiguration, +} from "./wallet"; export { extractKdfConfiguration, Secp256k1Wallet } from "./secp256k1wallet";