@lightninglabs/lnc-web
Advanced tools
Comparing version 0.2.4-alpha to 0.2.5-alpha
@@ -1,2 +0,2 @@ | ||
import { FaradayApi, LitApi, LndApi, LoopApi, PoolApi } from '@lightninglabs/lnc-core'; | ||
import { FaradayApi, LitApi, LndApi, LoopApi, PoolApi, TaprootAssetsApi } from '@lightninglabs/lnc-core'; | ||
import { CredentialStore, LncConfig } from './types/lnc'; | ||
@@ -16,2 +16,3 @@ export default class LNC { | ||
faraday: FaradayApi; | ||
tapd: TaprootAssetsApi; | ||
lit: LitApi; | ||
@@ -18,0 +19,0 @@ constructor(lncConfig?: LncConfig); |
@@ -123,5 +123,10 @@ export interface WasmGlobal { | ||
isPaired: boolean; | ||
/** Clears any persisted data in the store */ | ||
clear(): void; | ||
/** | ||
* Clears the in-memory and persisted data in the store. | ||
* @param memoryOnly If `true`, only the in-memory data will be cleared. If | ||
* `false` or `undefined`, the persisted data will be cleared as well. | ||
* The default is `undefined`. | ||
*/ | ||
clear(memoryOnly?: boolean): void; | ||
} | ||
//# sourceMappingURL=lnc.d.ts.map |
@@ -54,3 +54,3 @@ import { CredentialStore } from '../types/lnc'; | ||
/** Clears any persisted data in the store */ | ||
clear(): void; | ||
clear(memoryOnly?: boolean): void; | ||
/** Loads persisted data from localStorage */ | ||
@@ -57,0 +57,0 @@ private _load; |
{ | ||
"name": "@lightninglabs/lnc-web", | ||
"version": "0.2.4-alpha", | ||
"version": "0.2.5-alpha", | ||
"description": "Lightning Node Connect npm module for web", | ||
@@ -54,3 +54,3 @@ "main": "./dist/index.js", | ||
"dependencies": { | ||
"@lightninglabs/lnc-core": "0.2.4-alpha", | ||
"@lightninglabs/lnc-core": "0.2.5-alpha", | ||
"crypto-js": "4.1.1" | ||
@@ -57,0 +57,0 @@ }, |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
210716
337
+ Added@lightninglabs/lnc-core@0.2.5-alpha(transitive)
- Removed@lightninglabs/lnc-core@0.2.4-alpha(transitive)