forked from adamlaska/MEWconnect-web-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
21 lines (19 loc) · 718 Bytes
/
index.js
File metadata and controls
21 lines (19 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// INITIATOR CLIENT
// The initiator client is the integration end of the connection,
// and sends the connection details to
// the signal server which then waits for a corresponding receiver connection.
// CRYPTO
// the crypto constructor is a collection of methods used by both the initiator and receiver
// in creating the direct connection
import 'core-js/stable';
import 'regenerator-runtime/runtime';
import MewConnectClient from './connectClient/index';
import MewConnectProvider from './connectProvider/index';
// import icons from './icon';
export default {
Initiator: MewConnectClient.Initiator,
Crypto: MewConnectClient.Crypto,
Client: MewConnectClient,
Provider: MewConnectProvider
// icons
};