UNPKG

@signumjs/wallets

Version:

Wallets communication package for DApps in the Signum Network

13 lines (12 loc) 290 B
/** * Original work Copyright (c) 2022 Signum Network */ /** * Interface for running subscriptions, i.e. returned by {@link WalletConnection.listen} */ export interface ExtensionListener { /** * Unsubscribe from the internal event messaging */ unlisten: () => void; }