UNPKG

eosplayer

Version:

eosplayer is the glue layer of eosjs, which is packaged based on eosjs and provides better usability for the application layer. It can be used on browsers already installed scatter or in Dapp wallets.

13 lines (12 loc) 381 B
import { IEosNodeConfig } from './configs'; import { Player } from './player'; export interface IMultiSourcePlayerConfig { node: IEosNodeConfig; urls: string[]; } export declare class MultiSourcePlayer extends Player { protected _conf: any; protected _urls: string[]; protected _nodeConfigs: IEosNodeConfig[]; constructor(conf: IMultiSourcePlayerConfig); }