6 changed files with 24 additions and 0 deletions
@ -0,0 +1,9 @@ |
|||||
|
'use strict'; |
||||
|
Object.defineProperty(exports, '__esModule', { value: true }); |
||||
|
const bip174_1 = require('bip174'); |
||||
|
class Psbt extends bip174_1.Psbt { |
||||
|
constructor() { |
||||
|
super(); |
||||
|
} |
||||
|
} |
||||
|
exports.Psbt = Psbt; |
@ -0,0 +1,7 @@ |
|||||
|
import { Psbt as PsbtBase } from 'bip174'; |
||||
|
|
||||
|
export class Psbt extends PsbtBase { |
||||
|
constructor() { |
||||
|
super(); |
||||
|
} |
||||
|
} |
@ -0,0 +1,4 @@ |
|||||
|
import { Psbt as PsbtBase } from 'bip174'; |
||||
|
export declare class Psbt extends PsbtBase { |
||||
|
constructor(); |
||||
|
} |
Loading…
Reference in new issue