@aeternity/aepp-sdk
Version:
SDK for the æternity blockchain
12 lines (11 loc) • 450 B
TypeScript
import BrowserConnection from './connection/Browser.js';
/**
* Browser connection proxy
* Provide functionality to easily forward messages from one connection to another and back
* @category aepp wallet communication
* @param con1 - first connection
* @param con2 - second connection
* @returns a function to stop proxying
*/
declare const _default: (con1: BrowserConnection, con2: BrowserConnection) => (() => void);
export default _default;