6 lines
202 B
TypeScript
6 lines
202 B
TypeScript
import { Psbt as PsbtBase } from 'bip174';
|
|
import { Signer } from './ecpair';
|
|
export declare class Psbt extends PsbtBase {
|
|
constructor();
|
|
signInput(inputIndex: number, keyPair: Signer): Psbt;
|
|
}
|