We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de7a891 commit 2513a54Copy full SHA for 2513a54
lib/lnc.ts
@@ -1,6 +1,7 @@
1
import { NativeModules } from 'react-native';
2
import {
3
FaradayApi,
4
+ LitApi,
5
LndApi,
6
LoopApi,
7
PoolApi,
@@ -25,6 +26,7 @@ export default class LNC {
25
26
loop: LoopApi;
27
pool: PoolApi;
28
faraday: FaradayApi;
29
+ lit: LitApi;
30
31
constructor(lncConfig?: LncConfig) {
32
// merge the passed in config with the defaults
@@ -47,6 +49,7 @@ export default class LNC {
47
49
this.loop = new LoopApi(createRpc, this);
48
50
this.pool = new PoolApi(createRpc, this);
51
this.faraday = new FaradayApi(createRpc, this);
52
+ this.lit = new LitApi(createRpc, this);
53
54
NativeModules.LncModule.initLNC(this._namespace);
55
}
0 commit comments