fix: module exports

Signed-off-by: getlarge <ed@getlarge.eu>
This commit is contained in:
getlarge 2021-03-10 08:48:13 +01:00
parent 7fe904061a
commit d26f667feb
No known key found for this signature in database
GPG Key ID: E4E13243600F9566
1 changed files with 8 additions and 5 deletions

View File

@ -2,9 +2,12 @@
// SPDX-License-Identifier: (Apache-2.0 AND 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 Transaction from './transaction'
export ccJsonLoad from './utils/ccJsonLoad'
export ccJsonify from './utils/ccJsonify'
export {
ccJsonLoad, ccJsonify, Connection, Ed25519Keypair, Transaction
}