UNPKG

@mindsorg/web3modal-ts

Version:

Web3modal's provider layer abstraction for simple implementation of web3 wallet connections

9 lines (8 loc) 278 B
import { IEventCallback } from '../helpers'; export declare class EventController { private _eventCallbacks; constructor(); on(eventCallback: IEventCallback): void; off(eventObj?: Partial<IEventCallback>): void; trigger(event: string, result?: any): void; }