Add missing type to subproviders exports

This commit is contained in:
Fabio Berger
2018-03-16 14:04:27 +01:00
parent 312a30578b
commit 3574ab253f

View File

@@ -12,7 +12,13 @@ export { LedgerSubprovider } from './subproviders/ledger';
export { GanacheSubprovider } from './subproviders/ganache';
export { Subprovider } from './subproviders/subprovider';
export { NonceTrackerSubprovider } from './subproviders/nonce_tracker';
export { ECSignature, LedgerWalletSubprovider, LedgerCommunicationClient, NonceSubproviderErrors } from './types';
export {
ECSignature,
LedgerWalletSubprovider,
LedgerCommunicationClient,
NonceSubproviderErrors,
LedgerSubproviderConfigs,
} from './types';
/**
* A factory method for creating a LedgerEthereumClient usable in a browser context.