bitcoinjs-lib icon indicating copy to clipboard operation
bitcoinjs-lib copied to clipboard

Please export `PsbtInputExtended` and `PsbtOutputExtended`

Open koa202405 opened this issue 9 months ago • 2 comments
trafficstars

So that I can remove following code in my project

// Following types are not exported by BitcoinJS, so they need to be manually extracted
export type PsbtInputExtended = Parameters<
  typeof bitcoin.Psbt.prototype.addInput
>[0];

export type PsbtOutputExtended = Parameters<
  typeof bitcoin.Psbt.prototype.addOutput
>[0];

koa202405 avatar Jan 22 '25 02:01 koa202405