mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
13 lines
312 B
JavaScript
13 lines
312 B
JavaScript
export default class WatchConnectivity {
|
|
isAppInstalled = false;
|
|
static shared = new WatchConnectivity();
|
|
wallets;
|
|
fetchTransactionsFunction = () => {};
|
|
|
|
getIsWatchAppInstalled() {}
|
|
|
|
async handleLightningInvoiceCreateRequest(_walletIndex, _amount, _description) {}
|
|
|
|
async sendWalletsToWatch() {}
|
|
}
|