Fix index.ts networks.ts lint

This commit is contained in:
junderw 2019-03-07 12:11:15 +09:00
parent 6a734aef4c
commit 3f34fe457a
No known key found for this signature in database
GPG key ID: B256185D3A971908
5 changed files with 26 additions and 26 deletions

12
types/index.d.ts vendored
View file

@ -1,17 +1,17 @@
import * as bip32 from 'bip32';
import * as ECPair from './ecpair';
import * as address from './address';
import * as crypto from './crypto';
import * as ECPair from './ecpair';
import * as networks from './networks';
import * as payments from './payments';
import * as script from './script';
export { ECPair, address, bip32, crypto, networks, payments, script };
export { Block } from './block';
export { OPS as opcodes } from './script';
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 { Network } from './networks';
export { Payment, PaymentOpts } from './payments';
export { OpCode } from './script';
export { Input as TxInput, Output as TxOutput } from './transaction';