style: apply prettier

This commit is contained in:
d-yokoi 2019-03-03 23:07:49 +09:00
parent c74ab67ccf
commit 03632f1507
No known key found for this signature in database
GPG key ID: 49EAF81BC6A0D19A
24 changed files with 2321 additions and 1958 deletions
ts_src

View file

@ -1,28 +1,20 @@
import * as bip32 from 'bip32'
import * as ECPair from './ecpair'
import * as address from './address'
import * as crypto from './crypto'
import * as networks from './networks'
import * as payments from './payments'
import * as script from './script'
import * as bip32 from 'bip32';
import * as ECPair from './ecpair';
import * as address from './address';
import * as crypto from './crypto';
import * as networks from './networks';
import * as payments from './payments';
import * as script from './script';
export {
ECPair,
address,
bip32,
crypto,
networks,
payments,
script,
}
export { ECPair, address, bip32, crypto, networks, payments, script };
export { Block } from './block'
export { Transaction } from './transaction'
export { TransactionBuilder } from './transaction_builder'
export { OPS as opcodes } from './script'
export { Block } from './block';
export { Transaction } from './transaction';
export { TransactionBuilder } from './transaction_builder';
export { OPS as opcodes } from './script';
export { Payment, PaymentOpts } from './payments'
export { Input as TxInput, Output as TxOutput } from './transaction'
export { Network } from './networks'
export { OpCode } from './script'
export { BIP32Interface } from 'bip32'
export { Payment, PaymentOpts } from './payments';
export { Input as TxInput, Output as TxOutput } from './transaction';
export { Network } from './networks';
export { OpCode } from './script';
export { BIP32Interface } from 'bip32';