File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 11import * as Constants from './constants' ;
22import * as Utils from './utils' ;
33
4- export {
5- CosmosTransaction as Transaction ,
6- CosmosTransactionBuilder as TransactionBuilder ,
7- } from '@bitgo/abstract-cosmos' ;
4+ export * from './iface' ;
5+
6+ export { CosmosTransactionBuilder as TransactionBuilder } from '@bitgo/abstract-cosmos' ;
7+ export { BabylonTransaction as Transaction } from './BabylonTransaction' ;
8+ export { CustomTransactionBuilder } from './CustomTransactionBuilder' ;
89export { KeyPair } from './keyPair' ;
910export { TransactionBuilderFactory } from './transactionBuilderFactory' ;
1011export { Constants , Utils } ;
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import * as testData from '../resources/baby';
99import { BabylonSpecificMessages } from '../../src/lib/iface' ;
1010
1111describe ( 'Babylon Transaction' , ( ) => {
12- let tx : Transaction < BabylonSpecificMessages > ;
12+ let tx : Transaction ;
1313 const config = coins . get ( 'tbaby' ) ;
1414
1515 beforeEach ( ( ) => {
You can’t perform that action at this time.
0 commit comments