@signumjs/core
Version:
Principal package with functions and models for building Signum Network applications.
14 lines (13 loc) • 428 B
TypeScript
/**
* Copyright (c) 2019 Burst Apps Team
*/
import { ChainService } from '../../../service/chainService';
import { PeerAddressList } from '../../../typings/peerAddressList';
/**
* Use with {@link ApiComposer} and belongs to {@link NetworkApi}.
*
* See details at {@link NetworkApi.getPeers}
*
* @category factories
*/
export declare const getPeers: (service: ChainService) => (active: boolean) => Promise<PeerAddressList>;