diff options
Diffstat (limited to 'src/external/stellar-freighter-api/@stellar/freighter-api/src/watchWalletChanges.d.ts')
-rw-r--r-- | src/external/stellar-freighter-api/@stellar/freighter-api/src/watchWalletChanges.d.ts | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/external/stellar-freighter-api/@stellar/freighter-api/src/watchWalletChanges.d.ts b/src/external/stellar-freighter-api/@stellar/freighter-api/src/watchWalletChanges.d.ts new file mode 100644 index 0000000..79ff95e --- /dev/null +++ b/src/external/stellar-freighter-api/@stellar/freighter-api/src/watchWalletChanges.d.ts @@ -0,0 +1,21 @@ +import { FreighterApiError } from "@shared/api/types"; +interface CallbackParams { + address: string; + network: string; + networkPassphrase: string; + error?: FreighterApiError; +} +export declare class WatchWalletChanges { + timeout: number; + currentAddress: string; + currentNetwork: string; + currentNetworkPassphrase: string; + isRunning: boolean; + constructor(timeout?: number); + watch(cb: (params: CallbackParams) => void): { + error?: FreighterApiError; + }; + fetchInfo: (cb: (params: CallbackParams) => void) => Promise<void>; + stop(): void; +} +export {}; |