Skip to content

Commit cd5c529

Browse files
committed
fix: module exports
1 parent 7fe9040 commit cd5c529

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

src/index.js

+8-5
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@
22
// SPDX-License-Identifier: (Apache-2.0 AND CC-BY-4.0)
33
// Code is Apache-2.0 and docs are CC-BY-4.0
44

5-
export Ed25519Keypair from './Ed25519Keypair'
5+
import Ed25519Keypair from './Ed25519Keypair'
6+
import Connection from './connection'
7+
import Transaction from './transaction'
8+
import ccJsonLoad from './utils/ccJsonLoad'
9+
import ccJsonify from './utils/ccJsonify'
610

7-
export Connection from './connection'
8-
export Transaction from './transaction'
9-
export ccJsonLoad from './utils/ccJsonLoad'
10-
export ccJsonify from './utils/ccJsonify'
11+
export {
12+
ccJsonLoad, ccJsonify, Connection, Ed25519Keypair, Transaction
13+
}

0 commit comments

Comments
 (0)