mirror of
https://github.com/bigchaindb/js-bigchaindb-driver.git
synced 2024-11-22 01:36:56 +01:00
fix: module exports
Signed-off-by: getlarge <ed@getlarge.eu>
This commit is contained in:
parent
7fe904061a
commit
d26f667feb
13
src/index.js
13
src/index.js
@ -2,9 +2,12 @@
|
|||||||
// SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
// SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
|
||||||
// Code is Apache-2.0 and docs are CC-BY-4.0
|
// Code is Apache-2.0 and docs are CC-BY-4.0
|
||||||
|
|
||||||
export Ed25519Keypair from './Ed25519Keypair'
|
import Ed25519Keypair from './Ed25519Keypair'
|
||||||
|
import Connection from './connection'
|
||||||
|
import Transaction from './transaction'
|
||||||
|
import ccJsonLoad from './utils/ccJsonLoad'
|
||||||
|
import ccJsonify from './utils/ccJsonify'
|
||||||
|
|
||||||
export Connection from './connection'
|
export {
|
||||||
export Transaction from './transaction'
|
ccJsonLoad, ccJsonify, Connection, Ed25519Keypair, Transaction
|
||||||
export ccJsonLoad from './utils/ccJsonLoad'
|
}
|
||||||
export ccJsonify from './utils/ccJsonify'
|
|
||||||
|
Loading…
Reference in New Issue
Block a user