File tree Expand file tree Collapse file tree 4 files changed +16
-2
lines changed Expand file tree Collapse file tree 4 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 22 "name" : " bip174" ,
33 "version" : " 1.0.0" ,
44 "description" : " " ,
5- "main" : " src/lib/psbt .js" ,
6- "types" : " src/lib/psbt .d.ts" ,
5+ "main" : " src/index .js" ,
6+ "types" : " src/index .d.ts" ,
77 "files" : [
88 " src/lib"
99 ],
Original file line number Diff line number Diff line change 1+ export { Psbt } from './lib/psbt' ;
2+ export * from './lib/interfaces' ;
3+ export * from './lib/typeFields' ;
Original file line number Diff line number Diff line change 1+ 'use strict' ;
2+ function __export ( m ) {
3+ for ( var p in m ) if ( ! exports . hasOwnProperty ( p ) ) exports [ p ] = m [ p ] ;
4+ }
5+ Object . defineProperty ( exports , '__esModule' , { value : true } ) ;
6+ var psbt_1 = require ( './lib/psbt' ) ;
7+ exports . Psbt = psbt_1 . Psbt ;
8+ __export ( require ( './lib/typeFields' ) ) ;
Original file line number Diff line number Diff line change 1+ export { Psbt } from './lib/psbt'
2+ export * from './lib/interfaces'
3+ export * from './lib/typeFields'
You can’t perform that action at this time.
0 commit comments